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
| .datepicker {
| &__output {
| width: 100%;
| display: grid;
| grid-auto-columns: 1fr;
| grid-auto-flow: column;
| padding-right: 0;
|
| .input-dm {
| min-width: 110px;
| text-align: center;
| }
|
| &_range {
| grid-auto-columns: 1fr min-content 1fr;
| }
| }
|
| &__separator {
| margin: 0 10px;
| display: flex;
| align-items: center;
| }
|
| &__wrapper {
| background-color: transparent;
|
| > div {
| display: flex;
| background-color: transparent;
| }
| }
| }
|
|