split en and zh into 2 columns for assemblies

This commit is contained in:
imohkay 2021-10-28 16:00:36 +05:30
commit 81d4df0b32
3 changed files with 32 additions and 11 deletions

View file

@ -67,6 +67,7 @@ main > .film {
max-width: 250px;
}
.texts {
margin-top: var(--spacing-2);
margin-bottom: var(--spacing-2);

View file

@ -102,3 +102,17 @@ main > .about {
}
}
.assemblies {
&.row {
@media only screen and (max-width: 799px) {
flex-direction: column;
}
}
.col {
@media only screen and (min-width: 800px) {
width: 50%;
}
}
}