16 lines
298 B
SCSS
Raw Normal View History

2025-07-04 22:45:22 +08:00
.main__container {
height: 100%;
width: 100%;
&.table {
overflow: hidden; //表格需要hidden
2025-07-09 17:43:57 +08:00
display: grid;
grid-template-rows: 50px 1fr;
gap:$normolGap;
2025-07-04 22:45:22 +08:00
}
&.white-bg {
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
}