-
Notifications
You must be signed in to change notification settings - Fork 342
/
overview-overlay.css
56 lines (50 loc) · 1.09 KB
/
overview-overlay.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
.box {
composes: toolTips from 'src/common-ui/elements.css';
position: absolute;
padding: 40px 25px 25px;
width: 90%;
max-width: 600px;
z-index: 2500;
margin: auto auto;
background: white;
margin-top: -130px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.header {
composes: sectionTitle from 'src/options/settings/components/settings.css';
margin: 0px;
text-align: center;
font-size: 21px;
cursor: pointer;
}
.description {
composes: infoText from 'src/options/settings/components/settings.css';
margin: 0px;
text-align: center;
}
.buttonbox {
grid-area: buttonbox;
display: flex;
align-items: center;
justify-self: center;
font-size: 17px;
margin-top: 30px;
cursor: pointer;
}
.continueButton {
composes: CTA from '../colors.css';
margin-right: 10px;
padding: 10px 20px;
}
.cancelButton {
composes: warningColor from '../colors.css';
margin-left: 10px;
font-weight: bold;
cursor: pointer;
&:hover {
color: #222;
}
}