blob: 593bb09d7dba9efbc808ddc8405b197ea38db6b0 (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
.customized-date-picker {
margin-bottom: 24px;
.date-picker-label {
&.required {
&:before {
content: "*";
color: $red;
margin: 0 4px 0 0;
}
}
@extend .body-2-semibold;
color: $dark-gray;
margin-bottom: 8px;
}
.datepicker-custom-input {
display: flex;
justify-content: space-between;
width: 243px;
height: 30px;
border-radius: 2px;
color: $dark-gray;
border: 1px solid $light-gray;
padding: 6px 12px;
&:hover {
border-color: $gray;
.clear-input {
&:before {
cursor: pointer;
content: 'x';
}
}
}
.datepicker-text {
cursor: pointer;
width: 170px;
@extend .body-1;
&.placeholder {
color: $light-gray;
}
}
.calendar-input {
fill: $light-gray;
}
}
}
|