mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 12:48:04 +08:00
32 lines
529 B
SCSS
32 lines
529 B
SCSS
.common-layout {
|
|
.el-header,
|
|
.el-footer,
|
|
.el-main,
|
|
.el-aside {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.el-header,
|
|
.el-footer {
|
|
background-color: #b3c0d1;
|
|
color: var(--el-text-color-primary);
|
|
text-align: center;
|
|
}
|
|
|
|
.el-aside {
|
|
background-color: #d3dce6;
|
|
color: var(--el-text-color-primary);
|
|
text-align: center;
|
|
}
|
|
|
|
.el-main {
|
|
background-color: #e9eef3;
|
|
color: var(--el-text-color-primary);
|
|
text-align: center;
|
|
|
|
height: 150px;
|
|
}
|
|
}
|