wang-hao-jie
2021-11-24 07d3ca1aef2fa1ffca559593b93a2696e2a70d0e
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
.access {
    &-user-content {
        height: 200px;
    }
 
    &-current-user-content {
        text-align: center;
        padding-top: 10px;
 
        p {
            display: block;
            padding: 20px 0 0;
        }
 
        b {
            color: #2d8cf0;
            display: block;
            overflow: hidden;
        }
    }
 
    .access-user-content {
        height: 200px;
 
        .access-buttons {
            height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
        }
    }
 
    .content-table {
        height: 240px;
        overflow: hidden;
    }
 
    .content-role {
        height: 240px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
}
 
code {
    font-size: 1em;
    display: inline-block;
    background: #f7f7f7;
    margin: 0 3px;
    padding: 1px 5px;
    border-radius: 3px;
    color: #666;
    border: 1px solid #eee;
}
 
.access-user-roles {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
 
    p {
        display: block;
        padding: 10px 0 0;
    }
 
    b {
        color: #2d8cf0;
    }
}
 
.btns {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}
 
.role-demo {
    padding: 15px 0;
}