File size: 272 Bytes
6b8fc2c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.container {
    display: flex;

    .menu {
        .defaultWidth {
            width: 256px;
        }

        .minWidth {
            width: 50px
        }
    }

    .content {
        flex: 1;
        overflow-x: auto;
        height: 100%;
    }
}