init admin

This commit is contained in:
2025-11-07 09:56:20 +08:00
commit d9d7ddc05d
2718 changed files with 665424 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
@mixin colBox($isBtw) {
display: flex;
flex-direction: column;
@if $isBtw {
justify-content: space-between;
}
}
@mixin centerBox {
display: flex;
justify-content: center;
align-items: center;
}
@mixin vCenterBox {
display: flex;
align-items: center;
}
@mixin btwBox {
display: flex;
justify-content: space-between;
align-items: center;
}
@mixin nomalEllipsis {
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
white-space: nowrap;
}
@mixin ellipsisWithLine($line) {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: $line;
overflow: hidden;
word-break: break-all;
}