blob: afc16e3c0567baecf43cfec3e21c404097c25f2f (
plain)
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
|
@import "./../globalCssVariables.scss";
.bar {
height: 100%;
width: 5px;
background-color: green;
position: relative;
// pointer-events: none;
.menubox {
width: 200px;
height: 200px;
top: 50%;
position: relative;
background-color: $light-color;
.menutable{
tr:nth-child(odd){
background-color:$light-color-secondary;
}
}
}
.leftResize{
left:-10px;
height:20px;
width:20px;
border-radius: 50%;
border: 1px black;
background-color: transparent;
top: calc(50% - 10px);
position:absolute;
}
.rightResize{
right:-10px;
height:20px;
width:20px;
border-radius: 50%;
top:calc(50% - 10px);
background-color:black;
position:absolute;
}
}
|