diff options
| author | Joe Carstairs <me@joeac.net> | 2025-12-18 10:59:46 +0000 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2025-12-18 10:59:46 +0000 |
| commit | 476fe39f50a61a85317ffbbeb2fb96ee07832a8d (patch) | |
| tree | 031567933619856828712dd4ad8588af5d679068 /website/public/css/otp.css | |
| parent | a85b7b36c6b549642c8cc125a498fa521588bf5e (diff) | |
define OtpDialog
Diffstat (limited to 'website/public/css/otp.css')
| -rw-r--r-- | website/public/css/otp.css | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/website/public/css/otp.css b/website/public/css/otp.css new file mode 100644 index 0000000..4a7db02 --- /dev/null +++ b/website/public/css/otp.css @@ -0,0 +1,29 @@ +.otp-inputs { + display: flex; + flex-direction: row; + gap: var(--spacing-inline-sm); + justify-content: center; + + input { + border: none; + border-block-end: 2px solid var(--colour-grey-fg); + font-size: var(--font-size-lg); + text-align: center; + width: var(--font-size-lg); + } +} + +.otp-form { + align-items: center; + display: flex; + flex-direction: column; + gap: var(--spacing-block-sm); + + > * { + margin: 0; + } + + input[type="submit"] { + max-width: max-content; + } +} |
