diff options
author | Tusooa Zhu <tusooa@kazv.moe> | 2022-08-20 21:52:20 -0400 |
---|---|---|
committer | Tusooa Zhu <tusooa@kazv.moe> | 2022-08-20 21:52:20 -0400 |
commit | c59a0bd12fe0f9b935ad7cc2ddda6d562d21eb01 (patch) | |
tree | 5ccd0db254f9b054b27893acac100ec40e6edd8b | |
parent | 6ccab516a3f62682fe15f8efec36be82acafc155 (diff) | |
download | pleroma-c59a0bd12fe0f9b935ad7cc2ddda6d562d21eb01.tar.gz |
Add margin to forms and make inputs fill whole width
-rw-r--r-- | priv/static/instance/static.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/priv/static/instance/static.css b/priv/static/instance/static.css index 487e1ec27..48c74c125 100644 --- a/priv/static/instance/static.css +++ b/priv/static/instance/static.css @@ -51,6 +51,7 @@ body { overflow: hidden; margin: 35px auto; box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.5); + padding: 0em 1em 0em 1em; } .container__content { @@ -86,7 +87,6 @@ form { } input { - box-sizing: content-box; padding: 10px; margin-top: 5px; margin-bottom: 10px; @@ -97,6 +97,8 @@ input { transition-duration: 0.35s; border-bottom: 2px solid #2a384a; font-size: 14px; + width: inherit; + box-sizing: border-box; } .scopes-input { |