summaryrefslogtreecommitdiff
path: root/web/source
diff options
context:
space:
mode:
authorLibravatar f0x52 <f0x@cthu.lu>2021-07-08 18:00:23 +0200
committerLibravatar GitHub <noreply@github.com>2021-07-08 18:00:23 +0200
commit2cebac592f9ae49b51bdc50c4299a32aea19717e (patch)
treed302e52920bf0f6110e3ada5a6f814121950f340 /web/source
parentundo template no escape (#87) (diff)
downloadgotosocial-2cebac592f9ae49b51bdc50c4299a32aea19717e.tar.xz
Css input/select styling tweak (#91)
* css styling tweaks * bundle * apply styling to textarea as well * bundle, whitespace
Diffstat (limited to 'web/source')
-rw-r--r--web/source/style.css14
1 files changed, 7 insertions, 7 deletions
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;