diff options
author | santiagorodriguez96 <46354312+santiagorodriguez96@users.noreply.github.com> | 2020-08-24 11:46:27 -0300 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2020-08-30 17:21:16 +0200 |
commit | a340e653df30a90910675f09284059055a598d46 (patch) | |
tree | 05e284b6263409ff184fdf90ab60e38075d2e133 | |
parent | bf55b5463a15abbf5fcb18f06a344da09092eeb7 (diff) |
[Glitch] Add WebAuthn as an alternative 2FA method
Port CSS changes from e8d41bc2fe9418613cdc118c8674fc5fe7856685 Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com> Signed-off-by: Thibaut Girka <thib@sitedethib.com>
-rw-r--r-- | app/javascript/flavours/glitch/styles/forms.scss | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/styles/forms.scss b/app/javascript/flavours/glitch/styles/forms.scss index 5dd312ce1..d53567bc3 100644 --- a/app/javascript/flavours/glitch/styles/forms.scss +++ b/app/javascript/flavours/glitch/styles/forms.scss @@ -12,6 +12,10 @@ code { } .simple_form { + &.hidden { + display: none; + } + .input { margin-bottom: 15px; overflow: hidden; @@ -100,6 +104,14 @@ code { } } + .title { + color: #d9e1e8; + font-size: 20px; + line-height: 28px; + font-weight: 400; + margin-bottom: 30px; + } + .hint { color: $darker-text-color; @@ -133,7 +145,7 @@ code { } } - .otp-hint { + .authentication-hint { margin-bottom: 25px; } @@ -583,6 +595,10 @@ code { color: $error-value-color; } + &.hidden { + display: none; + } + a { display: inline-block; color: $darker-text-color; |