Merge pull request 'Language for Assemblies' (#31) from assemblies-lang into main

Reviewed-on: 0x2620/aab21#31
This commit is contained in:
sanj 2021-10-28 11:16:04 +00:00
commit 01c247fd42
7 changed files with 68 additions and 9 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%;
}
}
}