zhou zhou
7 小时以前 46d872c1a5b77aa8799de4a64888a0a24a1422d6
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
.app-layout {
  display: flex;
  width: 100%;
  min-height: 100vh;
  background: var(--default-bg-color);
 
  #app-sidebar {
    flex-shrink: 0;
  }
 
  #app-main {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    height: 100vh;
    overflow: auto;
 
    #app-header {
      position: sticky;
      top: 0;
      z-index: 50;
      flex-shrink: 0;
      width: 100%;
    }
 
    #app-content {
      flex: 1;
 
      :deep(.layout-content) {
        box-sizing: border-box;
        width: calc(100% - 40px);
        margin: auto;
 
        // 子页面默认 style
        .page-content {
          position: relative;
          box-sizing: border-box;
          padding: 20px;
          overflow: hidden;
          background: var(--default-box-color);
          border-radius: calc(var(--custom-radius) / 2 + 2px) !important;
        }
      }
    }
  }
}
 
@media only screen and (width <= 1180px) {
  .app-layout {
    #app-main {
      height: 100dvh;
    }
  }
}
 
@media only screen and (width <= 800px) {
  .app-layout {
    position: relative;
 
    #app-sidebar {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 300;
      height: 100vh;
    }
 
    #app-main {
      width: 100%;
      height: auto;
      overflow: visible;
 
      #app-content {
        :deep(.layout-content) {
          width: calc(100% - 40px);
        }
      }
    }
  }
}
 
@media only screen and (width <= 640px) {
  .app-layout {
    #app-main {
      #app-content {
        :deep(.layout-content) {
          width: calc(100% - 30px);
        }
      }
    }
  }
}