File tree Expand file tree Collapse file tree 5 files changed +38
-19
lines changed Expand file tree Collapse file tree 5 files changed +38
-19
lines changed Original file line number Diff line number Diff line change 20
20
}
21
21
22
22
& .footer-info {
23
+ padding-bottom : var (--spacing-5 );
24
+ padding-top : var (--spacing-5 );
23
25
display : flex;
24
26
justify-content : space-between;
25
27
26
- & .logo-wrapper {
27
- grid-row : 1 / 4 ;
28
+ & .spacer {
29
+ grid-row : 2 / 4 ;
30
+ }
31
+
32
+ & .info-link {
33
+ margin-top : auto;
34
+ margin-bottom : auto;
35
+ line-height : 40px ;
28
36
}
29
37
}
30
38
58
66
59
67
& .footer-statement {
60
68
justify-content : space-between;
61
- background-color : var (--color-gray-100 );
62
69
}
63
70
64
71
& .footer-copyright {
65
72
color : var (--color-gray-600 );
66
73
}
67
74
68
- & .footer-contributions-wrapper {
69
- background-color : var (--color-white );
75
+ & .footer-spacer {
76
+ border : 0 ;
77
+ border-top : 2px solid var (--color-gray-300 );
78
+ display : block;
79
+ height : 2px ;
70
80
}
71
81
72
82
& .footer-contributions {
73
83
align-items : center;
74
84
color : var (--color-gray-600 );
75
85
display : flex;
76
86
justify-content : space-between;
87
+
88
+ & .sponsor-icons {
89
+ margin-top : var (--spacing-1 );
90
+ }
77
91
}
78
92
79
93
& .footer-contributor-logo ,
85
99
86
100
@media (max-width : 1007px ) {
87
101
& .footer-info {
102
+ padding-bottom : var (--spacing-3 );
103
+ padding-top : var (--spacing-3 );
88
104
flex-direction : column;
89
105
90
106
& .footer-logo {
91
- margin-bottom : var (--spacing-1 );
92
107
width : 5rem ;
93
108
}
94
109
}
95
110
96
111
& .footer-info-links {
97
- display : flex ;
112
+ display : block ;
98
113
flex-wrap : wrap;
99
114
100
115
& > a {
101
116
margin-right : var (--spacing-2 );
102
117
}
103
-
104
- & .logo-wrapper {
105
- width : 100% ;
106
- }
107
118
}
108
119
109
120
& .footer-contributions {
110
121
align-items : start;
111
122
flex-direction : column;
123
+
124
+ & .sponsor-icons {
125
+ margin-top : var (--spacing-2 );
126
+ }
112
127
}
113
128
}
114
129
}
Original file line number Diff line number Diff line change 7
7
8
8
<EsFooter::EsStatement @tagline ={{ tagline }} />
9
9
10
+ <hr class =" footer-spacer container py-0 my-3" >
11
+
10
12
<EsFooter::EsContributions @contributorLinks ={{ contributorLinks }} />
11
13
</footer >
Original file line number Diff line number Diff line change 1
- <div class =" footer-contributions-wrapper container py -3" >
1
+ <div class =" footer-contributions-wrapper container pt-0 pb -3" >
2
2
<div class =" footer-contributions" >
3
3
<span >Ember is generously supported by</span >
4
- <div class =" mt-1 " >
4
+ <div class =" sponsor-icons " >
5
5
{{ #each args.contributorLinks as |link |}}
6
6
<a href ={{ link.href }} title ={{ link.title }} aria-label ={{ link.title }} class =" mr-2" >
7
7
{{ svg-jar link.class class =" footer-contributor-logo" }}
Original file line number Diff line number Diff line change 1
- <div class =" footer-info container py-2 text-sm " >
1
+ <div class =" footer-info container" >
2
2
<div class =" footer-info-links" >
3
- <div class =" logo-wrapper" >
4
- <img src =" /images/ember-logo.svg" alt =" Ember Logo" class =" footer-logo" >
5
- </div >
3
+
4
+ <img src =" /images/ember-logo.svg" height =" 40px" width =" 83px" alt =" Ember Logo" class =" footer-logo" >
5
+
6
+ <div class =" spacer" ></div >
7
+
6
8
{{ #each args.infoLinks as |link |}}
7
- <a href ={{ link.href }} >{{ link.name }} </a >
9
+ <a href ={{ link.href }} class = " info-link " >{{ link.name }} </a >
8
10
{{ /each }}
9
11
</div >
10
12
<div class =" footer-social hide-on-mobile" >
Original file line number Diff line number Diff line change 1
1
<div class =" footer-statement" >
2
- <p class =" footer-copyright container py-3 " >
2
+ <p class =" footer-copyright container py-1 " >
3
3
© Copyright {{ currentYear }} - <a href =" https://www.tilde.io/" class =" footer-copyright" >Tilde Inc.</a >
4
4
<br >
5
5
{{ args.tagline }}
You can’t perform that action at this time.
0 commit comments