mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-01 14:38:07 +08:00
38 lines
858 B
SCSS
38 lines
858 B
SCSS
.el-container {
|
|
display: flex;
|
|
width: 100%;
|
|
min-width: 970px;
|
|
height: 100%;
|
|
.el-aside {
|
|
width: auto;
|
|
overflow: inherit;
|
|
}
|
|
.el-header,
|
|
.el-footer {
|
|
height: auto;
|
|
padding: 0;
|
|
}
|
|
.el-main {
|
|
box-sizing: border-box;
|
|
padding: 20px 33px;
|
|
|
|
overflow-x: hidden;
|
|
background-color: #f4f4f4;
|
|
// background: #f0f2f5;
|
|
.main-box {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 5px;
|
|
overflow: auto;
|
|
overflow-x: hidden !important;
|
|
// background-color: #f0f2f5;
|
|
border-radius: 4px;
|
|
// box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
|
|
&::-webkit-scrollbar {
|
|
background-color: white;
|
|
}
|
|
}
|
|
}
|
|
}
|