40 lines
772 B
SCSS
40 lines
772 B
SCSS
.layout-container {
|
|
height: 100vh;
|
|
.el-aside {
|
|
background-color: #232323;
|
|
&__logo {
|
|
height: 120px;
|
|
background: url('https://fe-bigevent-web.itheima.net/assets/logo-d154372c.png')
|
|
no-repeat center / 120px auto;
|
|
}
|
|
.el-menu {
|
|
border-right: none;
|
|
}
|
|
}
|
|
.el-header {
|
|
background-color: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
.el-dropdown__box {
|
|
display: flex;
|
|
align-items: center;
|
|
.el-icon {
|
|
color: #999;
|
|
margin-left: 10px;
|
|
}
|
|
&:active,
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|
|
}
|
|
.el-footer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 14px;
|
|
color: #666;
|
|
}
|
|
}
|