1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| .app-sidebar {
| position: relative;
| // height: 100%;
| background-color: #314255;
| .box {
| width: 200px;
| .el-menu {
| border-right: solid 0px #e6e6e6;
| }
| .el-submenu .el-menu-item {
| min-width: none;
| }
| .icon {
| color: #bfcbd9;
| }
| .el-submenu__title:hover,
| .el-menu-item:focus,
| .el-menu-item:hover {
| background-color: cornflowerblue;
| }
| }
| }
|
|