-
-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathSiteMobileMenu.scss
73 lines (66 loc) · 1.57 KB
/
SiteMobileMenu.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
.SiteMobileMenu {
position: absolute;
width: 100vw;
top: calc(100% + $header-border-height);
background-color: $accent-pale-blue;
margin: 0 -16px;
@include body-3-medium;
ul {
list-style-type: none;
}
> ul {
> li {
border-bottom: rgba(152, 169, 189, 0.3) 1px solid;
}
}
.section__header,
.SiteNavigationToggle--lvl1 .SiteNavigationToggle__button {
@include h3-bold;
color: $blue-60;
margin: 0;
padding: 12px 16px;
background: none;
border: none;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
&.active {
color: $blue-90;
}
}
.section__dropdown--topics {
padding-bottom: 12px;
display: flex;
flex-direction: column;
row-gap: 4px;
}
.SiteNavigationToggle__caret {
font-size: 12px;
margin-right: 8px;
}
.SiteNavigationToggle__dropdown {
ul {
padding-bottom: 12px;
display: flex;
flex-direction: column;
row-gap: 4px;
li {
a {
display: block;
padding: 8px 16px 8px 32px;
color: $blue-60;
line-height: 21px;
}
}
}
}
.donate {
display: flex;
justify-content: center;
margin: 16px;
padding: 8px;
color: $white;
background-color: $vermillion;
}
}