Add margin to forms and make inputs fill whole width
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
Tusooa Zhu 2022-08-20 21:52:20 -04:00 committed by FloatingGhost
parent 2aa8e66527
commit 4c06c4ecb1
1 changed files with 3 additions and 1 deletions

View File

@ -51,6 +51,7 @@ body {
overflow: hidden; overflow: hidden;
margin: 35px auto; margin: 35px auto;
box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.5); box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.5);
padding: 0em 1em 0em 1em;
} }
.container__content { .container__content {
@ -86,7 +87,6 @@ form {
} }
input { input {
box-sizing: content-box;
padding: 10px; padding: 10px;
margin-top: 5px; margin-top: 5px;
margin-bottom: 10px; margin-bottom: 10px;
@ -97,6 +97,8 @@ input {
transition-duration: 0.35s; transition-duration: 0.35s;
border-bottom: 2px solid #2a384a; border-bottom: 2px solid #2a384a;
font-size: 14px; font-size: 14px;
width: inherit;
box-sizing: border-box;
} }
.scopes-input { .scopes-input {