first commit

This commit is contained in:
chorblack
2025-04-22 21:00:46 +08:00
commit 0b54051613
19 changed files with 1199 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
@mixin flex-box-mixins($direction: row, $justify: center, $align-items: center) {
flex-direction: $direction;
justify-content: $justify;
align-items: $align-items;
}