Apply styling to OTP attempt field

This commit is contained in:
Dominik Kwiatek 2020-10-24 00:13:14 +02:00
parent 7f4d6cdc0f
commit 37d2b43023

View file

@ -1,3 +1,8 @@
%totp-input {
font-family: "Monaco", "Inconsolata", "Cascadia Code", "Consolas", monospace;
width: 86px;
}
.totp-setup { .totp-setup {
&__card { &__card {
background: var(--primary); background: var(--primary);
@ -36,7 +41,10 @@
} }
&__code-field { &__code-field {
font-family: "Monaco", "Inconsolata", "Cascadia Code", "Consolas", monospace; @extend %totp-input;
width: 86px;
} }
} }
#user_otp_attempt {
@extend %totp-input;
}