diff --git a/web/assets/bundle.css b/web/assets/bundle.css index 768510764..b138c0b7d 100644 --- a/web/assets/bundle.css +++ b/web/assets/bundle.css @@ -138,18 +138,18 @@ section.login form { grid-gap: 0.7rem; } -section.login form input { - border: 1px solid #fafaff; - color: #fafaff; - background: #525c66; - width: 100%; - } - section.login form button { place-self: center; grid-column: 2; } +input, select, textarea { + border: 1px solid #fafaff; + color: #fafaff; + background: #525c66; + width: 100%; +} + footer { align-self: end; diff --git a/web/source/style.css b/web/source/style.css index 574293eda..17322ae7a 100644 --- a/web/source/style.css +++ b/web/source/style.css @@ -144,13 +144,6 @@ section.login { grid-template-columns: auto 100%; grid-gap: 0.7rem; - input { - border: 1px solid $fg; - color: $fg; - background: $bg; - width: 100%; - } - button { place-self: center; grid-column: 2; @@ -158,6 +151,13 @@ section.login { } } +input, select, textarea { + border: 1px solid $fg; + color: $fg; + background: $bg; + width: 100%; +} + footer { align-self: end;