добавлена форма записи, но инпуты не до конца стилизованы

This commit is contained in:
DmitriyB
2022-07-26 13:23:06 +05:00
parent a238cbd514
commit 83a85d66ad
7 changed files with 991 additions and 3 deletions
+40
View File
@@ -0,0 +1,40 @@
.request-form-container {
display: flex;
flex-direction: column;
width: 100%;
max-width: 500px;
gap: 24px;
height: 100%;
}
.request-form-date {
font-weight: 600;
font-size: 24px;
line-height: 110%;
}
.request-form {
display: flex;
flex-direction: column;
width: 100%;
gap: 30px;
height: 100%;
}
.request-form-submit-button {
width: 100%;
height: 60px;
border: none;
color: #FFFFFF;
font-weight: 600;
font-size: 17px;
line-height: 21px;
background: #333333;
/* margin-top: auto; */
cursor: pointer;
}
.request-form-submit-button:hover {
opacity: 0.7;
}