Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.multiStateToggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: outline 0.1s ease;
 
  &__option {
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    cursor: pointer;
    transition: background-color 0.1s ease;
    display: none;
 
    &_selected {
      display: inline-flex;
    }
  }
}