add grid, initial version

This commit is contained in:
2023-04-03 16:44:48 +08:00
parent c44aaf5177
commit 6234154f33
6 changed files with 836 additions and 114 deletions

View File

@ -1,3 +1,10 @@
@mixin inset($top, $right, $bottom, $left) {
top: $top;
right: $right;
bottom: $bottom;
left: $left;
}
@mixin scrollbar() {
&::-webkit-scrollbar {
width: 8px;
@ -8,4 +15,4 @@
background-color: rgba(168, 168, 168, 0.9);
border-radius: 4px;
}
}
}