grid system with breakpoints

This commit is contained in:
Jieiku 2022-01-17 10:32:35 -08:00
parent 157899683e
commit e69d24c5b9
12 changed files with 3294 additions and 318 deletions

View file

@ -23,3 +23,15 @@
[data-theme="dark"] {
@include dark;
}
// Display the grid with colors
.flex.demo > * > * {
display: block;
padding: .3em 0;
background: #008000;
text-align: center;
}
.flex.demo > *:nth-child(2n) > * {
background: #00FFFF;
}