File tree 2 files changed +61
-0
lines changed
2 files changed +61
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ const THEMES = {
18
18
Default : require ( './themes/default.scss' ) ,
19
19
'TCO19 - Header Menu' : require ( './themes/tco19-header.scss' ) ,
20
20
'TCO19 - Footer Menu' : require ( './themes/tco19-footer.scss' ) ,
21
+ 'TCO20 - Footer Menu' : require ( './themes/tco20-footer.scss' ) ,
21
22
} ;
22
23
/* eslint-enable global-require */
23
24
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments