1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
| .app-sidebar {
| position: relative;
| // height: 100%;
| background-color: #314255;
| .box {
| width: 187px;
| .logo-view {
| margin: 40px 20px 10px;
| }
| .el-menu {
| border-right: solid 0 #e6e6e6;
| }
| .icon {
| color: #bfcbd9;
| }
|
| .el-submenu__title:hover,
| .el-menu-item:focus,
| .el-menu-item:hover {
| background-color: #011527 !important;
| }
|
| ::v-deep{
| .el-menu .el-submenu .el-submenu__title:hover{
| background-color: #011527 !important;
| }
| }
|
| .el-submenu .el-menu-item {
| width: 166px;
| min-width: 166px;
| height: 38px;
| display: flex;
| align-items: center;
| margin-left: 11px;
| border-radius: 6px;
|
| &.is-active {
| color: #fff !important;
| flex-grow: 0;
| fill: #fff !important;
| background: #2a78fb !important;
| i {
| color: #fff;
| }
|
| }
| }
| }
| }
|
|