mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
18 lines
246 B
SCSS
18 lines
246 B
SCSS
@import 'variables';
|
|
@import 'mixins';
|
|
|
|
.posts {
|
|
display: grid;
|
|
gap: $spacer * 2;
|
|
|
|
@media (min-width: $screen-sm) {
|
|
@include breakoutviewport;
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
.posts h1 {
|
|
font-size: $font-size-h3;
|
|
}
|