16 lines
298 B
SCSS
16 lines
298 B
SCSS
.main__container {
|
|
height: 100%;
|
|
width: 100%;
|
|
&.table {
|
|
overflow: hidden; //表格需要hidden
|
|
display: grid;
|
|
grid-template-rows: 50px 1fr;
|
|
gap:$normolGap;
|
|
}
|
|
&.white-bg {
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
}
|
|
}
|