Form styling improved.

This commit is contained in:
codevictory
2021-05-04 22:38:34 +03:00
parent 9540166bfc
commit 6de4732dcc
2 changed files with 42 additions and 18 deletions

View File

@@ -7,6 +7,26 @@ form {
display: flex;
}
.text-input {
display: flex;
align-items: center;
label {
width: 29%;
text-align: left;
}
input {
width: 71%;
}
@media screen and (max-width: 600px) {
label {
width: 47%;
}
}
}
input {
margin-bottom: 10px;
}
@@ -16,3 +36,8 @@ input {
justify-content: center;
padding-bottom: 50px;
}
.submit-button {
padding-top: 31px;
padding-bottom: 31px;
}