-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.scss
78 lines (67 loc) · 1.64 KB
/
options.scss
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
@import './styles/colors.scss';
.options-container {
padding-top: 0.5rem;
span {
color: $ultra-black-color;
font-size: 0.875rem;
font-weight: 600;
}
fieldset {
padding: 0.5rem 0 1rem;
border: none;
display: flex;
flex-flow: column;
.label-checkbox {
cursor: pointer;
margin-left: 0.5rem;
font-size: 0.875rem;
font-weight: 500;
}
.input-container {
font-size: 0.875rem;
font-weight: 500;
padding-bottom: 0.25rem;
}
#minValueLength {
width: 3rem;
}
}
.buttons {
display: flex;
flex-flow: column;
padding: 0.5rem 0 1rem;
.button-container {
padding: 0.25rem 0;
}
button {
border: none;
cursor: pointer;
color: $ultra-black-color;
padding: 0;
display: flex;
flex-wrap: nowrap;
line-height: 1.25rem;
background: #fff;
width: 100%;
&:hover {
color: #000;
text-decoration: underline;
svg path {
fill: #000;
}
}
&:disabled {
cursor: not-allowed;
color: $disabled-grey;
svg path {
fill: $disabled-grey;
}
}
span {
padding-left: 0.5rem;
font-size: 0.875rem;
font-weight: 500;
}
}
}
}