Fixed chapter selection on last chapter

This commit is contained in:
2022-05-21 15:55:10 +03:00
parent 9770de6733
commit 448cb46e9e
13 changed files with 184 additions and 37 deletions

View File

@@ -0,0 +1,24 @@
.ContactForm {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
padding: var(--gap-md);
margin-left: var(--gap-xl);
margin-right: var(--gap-xl);
}
.ContactForm > * {
width: 100%;
max-width: 600px;
box-sizing: border-box;
margin-bottom: var(--gap-sm);
}
@media screen and (max-width: 1080px) {
.ContactForm {
margin: 0;
width: 100%;
box-sizing: border-box;
}
}