forked from Creditra/Creditra-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDateRangeChips.css
More file actions
46 lines (40 loc) · 856 Bytes
/
Copy pathDateRangeChips.css
File metadata and controls
46 lines (40 loc) · 856 Bytes
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
.date-range-chips {
display: flex;
flex-direction: column;
gap: 0.35rem;
}
.date-range-custom-fields {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.75rem;
margin-top: 0.25rem;
}
.date-range-custom-field {
display: flex;
flex-direction: column;
gap: 0.35rem;
}
.date-range-custom-field span {
font-size: 0.75rem;
font-weight: 500;
color: var(--muted);
}
.date-range-custom-field input {
min-height: 44px;
padding: 0.625rem 0.75rem;
background: var(--bg);
border: 1px solid var(--border);
border-radius: 0.75rem;
color: var(--text);
font: inherit;
}
.date-range-custom-field input:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
border-color: var(--accent);
}
@media (max-width: 640px) {
.date-range-custom-fields {
grid-template-columns: 1fr;
}
}