File size: 485 Bytes
79278ec
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.resizable-container {
  display: flex;
  width: 100%;
  margin-top: 10px;
  overflow: hidden;
}

.left-pane {
  min-width: 345px;
}

.right-pane {
  min-width: 260px;
  flex-grow: 1;
}

.resizer {
  width: 2px;
  background-color: var(--bg-color);
  cursor: ew-resize;
  position: relative;
  margin: 10px;
  transition: width 0.3s ease;
  pointer-events: auto;
}

.resizer:hover {
  width: 3px;
  border: 2px solid var(--border-0-color);
  background-color: var(--border-0-color);
}