-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.css
47 lines (47 loc) · 1.01 KB
/
layout.css
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
/* resizer */
.resizer_Vcontainer {
display: flex;
flex-direction: column;
height: 100%;
& > .resizer_content {
min-height: 0px;
height: 100%;
overflow: hidden;
padding: 3px;
}
& > .resizer_splitter {
height: 3px;
margin: 2px;
width: calc(100% - 10px);
border-radius: 3px;
flex: none;
cursor: row-resize;
background-color: #7c7c7c;
}
& > .resizer_splitter:hover {
background-color: #acacac;
}
}
.resizer_Hcontainer {
display: flex;
flex-direction: row;
height: 100%;
& > .resizer_content {
min-width: 0px;
width: 100%;
overflow: hidden;
padding: 3px;
}
& > .resizer_splitter {
width: 3px;
margin: 2px;
height: calc(100% - 10px);
border-radius: 3px;
flex: none;
cursor: col-resize;
background-color: #7c7c7c;
}
& > .resizer_splitter:hover {
background-color: #acacac;
}
}