chore: more mobile first
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2021-12-12 15:56:06 +01:00
parent 6ef22705b6
commit f4bdfe38a3
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 6 additions and 3 deletions

View File

@ -106,16 +106,19 @@ useTitle(() => title.value)
}
.content {
width: 50%;
padding: 2rem 2rem 1.5rem;
display: flex;
justify-content: space-between;
flex-direction: column;
padding: 2rem 2rem 1.5rem;
@media screen and (max-width: $desktop) {
width: 100%;
max-width: 450px;
margin: 0 auto;
margin-inline: auto;
}
@media screen and (min-width: $desktop) {
width: 50%;
}
}