chenzhaoyang
2025-12-17 063da0bf961e1d35e25dc107f883f7492f4c5a7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.toolbar {
  width: 42px;
  background: var(--color-neutral-background);
  border: 1px solid var(--color-neutral-border);
  box-shadow: 0 0 0 1px rgb(0 0 0 / 5%), 0 5px 10px rgb(0 0 0 / 10%);
  border-radius: 7px;
  position: sticky;
  top: 70px;
  margin-top: 50px;
 
  &__group ~ &__group:not(:last-child) {
    margin-top: 4px;
    border-top: 2px solid var(--color-neutral-border);
  }
 
  &_expanded {
    width: auto;
    min-width: 210px;
    display: flex;
    flex-direction: column;
  }
}