Skip to content

Commit 6798522

Browse files
committed
Close #3124
1 parent acc0911 commit 6798522

File tree

2 files changed

+61
-0
lines changed

2 files changed

+61
-0
lines changed

src/shared/components/Contentful/Menu/index.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const THEMES = {
1818
Default: require('./themes/default.scss'),
1919
'TCO19 - Header Menu': require('./themes/tco19-header.scss'),
2020
'TCO19 - Footer Menu': require('./themes/tco19-footer.scss'),
21+
'TCO20 - Footer Menu': require('./themes/tco20-footer.scss'),
2122
};
2223
/* eslint-enable global-require */
2324

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
@import '~styles/mixins';
2+
3+
.outerContainer {
4+
@include xs-to-sm {
5+
margin-bottom: 1em !important;
6+
margin-left: 35px;
7+
}
8+
9+
.title {
10+
color: #fff;
11+
font-size: 16px;
12+
font-weight: 700;
13+
line-height: 25px;
14+
text-align: left;
15+
text-transform: uppercase;
16+
margin-bottom: 5px;
17+
}
18+
19+
.menuContainer {
20+
display: flex;
21+
align-items: left;
22+
23+
.container {
24+
display: flex;
25+
flex-direction: column;
26+
list-style-type: none;
27+
text-align: left;
28+
padding: 0;
29+
}
30+
}
31+
32+
a.menuItemLink {
33+
text-decoration: none;
34+
padding: 0;
35+
36+
@include roboto-regular;
37+
38+
color: #fff;
39+
font-size: 14px;
40+
font-weight: 400;
41+
line-height: 21px;
42+
}
43+
}
44+
45+
.submenu {
46+
display: none;
47+
48+
.outerContainer {
49+
margin-left: 1em;
50+
}
51+
52+
.menuContainer {
53+
display: flex;
54+
align-items: left;
55+
56+
.container {
57+
flex-direction: column !important;
58+
}
59+
}
60+
}

0 commit comments

Comments
 (0)