init: CATL电池线MES Web首次入库

This commit is contained in:
XingCheng3
2026-06-08 17:11:50 +08:00
commit 403e2b8c4a
127 changed files with 62399 additions and 0 deletions

27
src/styles/mixin.scss Normal file
View File

@@ -0,0 +1,27 @@
@mixin clearfix {
&:after {
content: "";
display: table;
clear: both;
}
}
@mixin scrollBar {
&::-webkit-scrollbar-track-piece {
background: #d3dce6;
}
&::-webkit-scrollbar {
width: 6px;
}
&::-webkit-scrollbar-thumb {
background: #99a9bf;
border-radius: 20px;
}
}
@mixin relative {
position: relative;
width: 100%;
height: 100%;
}