shuishen
2021-12-23 9e43f80d96bda7f1108dcfcfd7340e567f2e48d0
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
51
52
53
54
55
56
57
58
59
60
61
62
.el-menu--popup-bottom-start {
    margin-top: 2px !important;
}
 
.el-menu--horizontal {
    .el-menu {
        padding: 0px !important;
        background: #fff !important;
        border-radius: 2px;
 
        .el-menu-item {
            color: #fff !important;
            border-bottom: 1px solid #e5e5e5 !important;
            background: #2196f3 !important;
        }
 
        .el-menu-item:last-child {
            border-bottom: none !important;
        }
 
        .el-menu-item:hover {
            background: #1A78C2 !important;
        }
    }
}
 
.layout-container {
 
    .el-container {
 
        .el-header {
            position: fixed;
            top: 0;
            left: 0;
            height: 60px;
            width: 100%;
            z-index: 99999;
 
            .el-menu {
 
                .el-menu-item {
                    font-size: 14px !important;
                }
            }
        }
 
        .el-main {
            position: fixed;
            top: 60px;
            left: 0;
            height: calc(100% - 60px);
            width: 100%;
            z-index: 10;
 
        }
 
    }
}
 
.el-image-viewer__wrapper {
    background: #000;
}