File tree Expand file tree Collapse file tree 2 files changed +42
-20
lines changed Expand file tree Collapse file tree 2 files changed +42
-20
lines changed Original file line number Diff line number Diff line change 1
- < header class =" scroll " >
1
+ < header >
2
2
< div class ="logo ">
3
3
< div class ="appIconShadow ">
4
4
< svg width ="0 " height ="0 ">
16
16
</ div >
17
17
< p class ="headerName "> {{ site.app_name }}</ p >
18
18
</ div >
19
- </ a >
20
- < nav >
19
+ < nav class ="scroll ">
21
20
< ul >
22
21
{% if site.presskit_download_link %}
23
22
< li > < a href ="{{ site.presskit_download_link }} "> Press Kit</ a > </ li >
24
23
{% endif %}
25
- < li > < a href ="{{ page.url | relative_url }} "> What's New</ a > </ li >
24
+ < li > < a href ="{{ page.url | relative_url }} "> Changelog</ a > </ li >
25
+ < li > < a href ="{{ page.url | relative_url }} "> Privacy Policy</ a > </ li >
26
26
</ ul >
27
27
</ nav >
28
28
</ header >
Original file line number Diff line number Diff line change @@ -83,20 +83,8 @@ header {
83
83
display : flex ;
84
84
}
85
85
86
- .scroll {
87
- white-space : nowrap ;
88
- overflow-x : auto ;
89
- -webkit-overflow-scrolling : touch ;
90
- -ms-overflow-style : -ms-autohiding-scrollbar ;
91
- }
92
-
93
- .scroll ::-webkit-scrollbar {
94
- display : none ;
95
- }
96
-
97
86
.logo {
98
87
display : flex ;
99
- width : 100% ;
100
88
justify-content : flex-start ;
101
89
align-items : center ;
102
90
height : 115px ;
@@ -105,11 +93,24 @@ header {
105
93
106
94
.logo > p {
107
95
color : $header-title-color ;
96
+ white-space : nowrap ;
108
97
display : flex ;
109
98
font-weight : bold ;
110
99
padding-bottom : 0px ;
111
100
}
112
101
102
+ @media only screen and (max-width : 768px ) {
103
+
104
+ .logo {
105
+ margin-right : 0px ;
106
+ }
107
+
108
+ .logo > p {
109
+ display : none ;
110
+ }
111
+
112
+ }
113
+
113
114
.headerIcon {
114
115
width : 50px ;
115
116
height : 50px ;
@@ -121,23 +122,44 @@ header {
121
122
122
123
123
124
// Navigation Links
124
- nav {
125
- width : 100% ;
125
+ .scroll {
126
126
display : flex ;
127
- justify-content : flex-end ;
127
+ width : 100 % ;
128
128
align-items : center ;
129
+ justify-content : flex-end ;
130
+
131
+ margin-left : 15px ;
129
132
height : 115px ;
133
+
134
+ white-space : nowrap ;
135
+ overflow-x : auto ;
136
+ overflow-y : hidden ;
137
+ -webkit-overflow-scrolling : touch ;
138
+ -ms-overflow-style : -ms-autohiding-scrollbar ;
130
139
}
131
140
141
+ @media only screen and (max-width : 768px ) {
142
+
143
+ .scroll {
144
+ justify-content : flex-start ;
145
+ }
146
+
147
+ }
148
+
149
+ .scroll ::-webkit-scrollbar {
150
+ display : none ;
151
+ }
152
+
153
+
132
154
nav > ul {
133
155
color : #fff ;
134
156
display : flex ;
135
157
list-style-type : none ;
158
+
136
159
}
137
160
138
161
nav > ul li {
139
162
padding-left : 30px ;
140
- text-align : right ;
141
163
}
142
164
143
165
nav > ul li :first-child {
You can’t perform that action at this time.
0 commit comments