-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FLORA-466] two factor authentication (#482)
- Loading branch information
Showing
50 changed files
with
1,598 additions
and
599 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* stylelint-disable selector-class-pattern */ | ||
/* stylelint-disable declaration-block-no-redundant-longhand-properties */ | ||
|
||
.button { | ||
background-color: var(--main-page-button-background); | ||
border-radius: 50rem; | ||
border-width: 1px; | ||
color: var(--text-color); | ||
font-weight: bolder; | ||
padding-bottom: 1rem; | ||
padding-left: 2rem; | ||
padding-right: 2rem; | ||
padding-top: 1rem; | ||
} | ||
|
||
.button:hover { | ||
border-color: var(--main-page-button-focus-border-color); | ||
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); | ||
transition-duration: 200ms; | ||
|
||
/* offset-x | offset-y | blur-radius | spread-radius | color */ | ||
box-shadow: 0 0 4px 2px var(--main-page-button-focus-border-color); | ||
} | ||
|
||
.button:active { | ||
border-color: var(--main-page-button-focus-border-color); | ||
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); | ||
transition-duration: 200ms; | ||
|
||
/* offset-x | offset-y | blur-radius | spread-radius | color */ | ||
box-shadow: 0 0 4px 2px var(--main-page-button-focus-border-color); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
.alert { | ||
padding: 1rem; | ||
border-radius: 0.5rem; | ||
align-items: center; | ||
display: flex; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.alert-info { | ||
color: var(--dark-blue); | ||
background-color: var(--light-blue-background); | ||
} | ||
|
||
.alert-error { | ||
color: var(--dark-red); | ||
background-color: var(--light-red-background); | ||
} | ||
|
||
svg.alert-icon { | ||
flex-shrink: 0; | ||
width: 1em; | ||
height: 1em; | ||
} | ||
|
||
.alert-message { | ||
margin-inline-start: 0.75rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.