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
1 changed files with 10 additions and 2 deletions

View File

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