gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 2cebac592f9ae49b51bdc50c4299a32aea19717e
parent 05e62479c84a72bcf081ec3520d89f13d5044ec5
Author: f0x52 <f0x@cthu.lu>
Date:   Thu,  8 Jul 2021 18:00:23 +0200

Css input/select styling tweak (#91)

* css styling tweaks

* bundle

* apply styling to textarea as well

* bundle, whitespace
Diffstat:
Mweb/assets/bundle.css | 14+++++++-------
Mweb/source/style.css | 14+++++++-------
2 files changed, 14 insertions(+), 14 deletions(-)

diff --git 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 @@ -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;