Adds ability for sections to span multiple rows or cols, and refactored section meta

This commit is contained in:
Alicia Sykes
2021-03-31 21:31:40 +01:00
parent cb631b9500
commit 36bbb490c1
5 changed files with 74 additions and 28 deletions

View File

@@ -38,3 +38,19 @@ $extra-large: 2800px;
}
}
@mixin tablet-up {
@media (min-width: #{$small}) {
@content;
}
}
@mixin laptop-up {
@media (min-width: #{$medium}) {
@content;
}
}
@mixin monitor-up {
@media (min-width: #{$large}) {
@content;
}
}