forked from WorldBrain/Memex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConfirmModal.css
57 lines (49 loc) · 957 Bytes
/
ConfirmModal.css
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
@value colors: 'src/common-ui/colors.css';
@value color4 from colors;
.textContainer {
color: color4;
display: flex;
align-items: center;
text-align: center;
font-size: 16px;
font-weight: 500;
margin-bottom: 10px;
& > div {
display: none;
}
}
.textContainerLoading {
& > div {
display: block;
}
}
.btnBar {
display: flex;
justify-content: center;
flex-direction: row-reverse;
}
.btn {
border: none;
cursor: pointer;
font-size: 17px;
font-weight: 600;
height: 30px;
margin: 10px;
width: 85px;
text-align: center;
border-radius: 3px;
display: flex;
align-items: center;
justify-content: center;
&:disabled,
&[disabled] {
color: #9a9a9a;
cursor: default;
}
}
.confirmBtn {
composes: CTA from 'src/common-ui/elements.css';
}
.cancelBtn {
composes: cancelNaked from 'src/common-ui/elements.css';
}