Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
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
.frames-control {
  height: 36px;
  min-width: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-neutral-surface);
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: var(--color-neutral-content);
  padding: 0 8px;
  border: 1px solid var(--color-neutral-border);
 
  span {
    color: var(--color-neutral-content-subtler);
    padding-left: 5px;
    font-weight: 400;
  }
 
  input {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
  }
}