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
34
| .time-box {
| width: 100px;
| height: 24px;
| border-radius: 4px;
| border: 1px solid var(--color-neutral-border);
| font-size: 14px;
| font-weight: 400;
|
| &_sidepanel {
| width: 100%;
| }
|
| &__input-time {
| border: none;
| padding: 0;
| outline: none;
| width: 100%;
| height: 100%;
| line-height: 22px;
| background: none;
| text-align: center;
| }
|
| &__displayed-time {
| width: 100%;
| height: 100%;
| line-height: 22px;
| text-align: center;
|
| span {
| color: var(--sand_400);
| }
| }
| }
|
|