-
Notifications
You must be signed in to change notification settings - Fork 1
/
modal.scss
59 lines (50 loc) · 888 Bytes
/
modal.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
$gray-text: #394150;
$container-width: 350px;
#nfd-help-center {
box-sizing: border-box;
.nfd-hc-modal {
padding-bottom: 32px;
h4,
h3 {
margin: 0;
}
&__header {
background-color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
width: $container-width;
height: 48px;
top: 0;
left: 0;
border-bottom: 1px solid #dddfe0;
&__heading {
font-size: 20px;
line-height: 24px;
font-weight: 400;
color: $gray-text;
padding-top: 4px;
&__icon {
margin-right: 12px;
margin-left: 12px;
vertical-align: middle;
}
}
&__close-button {
border: 0;
background: none;
margin-right: 1px;
}
}
}
.helpcenter-intro {
padding: 12px;
display: flex;
justify-content: flex-start;
align-items: stretch;
&__text {
padding: 0 8px;
}
}
}