Bin
2025-12-17 2e6c955be321cefd7e0c4a3031eab805e0a5a303
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;
    }
  }
}