aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/Keyframe.scss
blob: efd335c89bf30f1e13d78bfbdec809f55951a9c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@import "./../globalCssVariables.scss"; 

.bar {
    height: 100%;
    width: 5px;
    background-color: green;
    position: absolute;
    
    // pointer-events: none; 
    .menubox {
        width: 200px; 
        height: 200px;
        top: 50%;
        position: absolute; 
        background-color: $light-color; 
        .menutable{
            tr:nth-child(odd){
                background-color:$light-color-secondary;
            }
        }
    }
}