File tree 2 files changed +54
-4
lines changed
2 files changed +54
-4
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,12 @@ Other button classes are defined further down together with other classes for th
93
93
align-items : center;
94
94
}
95
95
96
+ @media (max-width : 700px ) and (orientation : portrait) {
97
+ .header-wrapper {
98
+ width : 200vw ;
99
+ }
100
+ }
101
+
96
102
.header-heading {
97
103
color : hsl (186deg 92% 11% );
98
104
font-size : 3rem ;
@@ -122,7 +128,8 @@ Other button classes are defined further down together with other classes for th
122
128
}
123
129
/* stylelint-enable selector-class-pattern */
124
130
125
- .usr-header {
131
+ .usr-header ,
132
+ .help-header {
126
133
display : flex;
127
134
justify-content : space-between;
128
135
align-items : center;
@@ -136,11 +143,27 @@ Other button classes are defined further down together with other classes for th
136
143
height : 80px ;
137
144
}
138
145
146
+ @media (max-width : 700px ) and (orientation : portrait) {
147
+ .usr-header {
148
+ width : 200vw ;
149
+ }
150
+
151
+ .help-header {
152
+ width : 200vw ;
153
+ }
154
+ }
155
+
139
156
.spreadsheet {
140
157
min-height : 100vh ;
141
158
margin-bottom : 5rem ;
142
159
}
143
160
161
+ @media (max-width : 700px ) and (orientation : portrait) {
162
+ .spreadsheet {
163
+ width : 200vw ;
164
+ }
165
+ }
166
+
144
167
.footer {
145
168
z-index : 100 ;
146
169
width : 100% ;
@@ -149,6 +172,13 @@ Other button classes are defined further down together with other classes for th
149
172
background-color : white;
150
173
}
151
174
175
+ @media (max-height : 700px ) and (orientation : landscape) {
176
+ .footer {
177
+ position : relative;
178
+ z-index : 0 ;
179
+ }
180
+ }
181
+
152
182
.input-label {
153
183
margin-left : 0.4rem ;
154
184
margin-top : 0.5rem ;
@@ -257,6 +287,12 @@ Other button classes are defined further down together with other classes for th
257
287
background-color : hsl (70deg 55% 98% );
258
288
}
259
289
290
+ @media (max-width : 700px ) and (orientation : portrait) {
291
+ .login-wrapper {
292
+ width : 200vw ;
293
+ }
294
+ }
295
+
260
296
.login-info {
261
297
margin : 2rem 0 3rem ;
262
298
}
@@ -678,13 +714,27 @@ Other button classes are defined further down together with other classes for th
678
714
position : relative;
679
715
}
680
716
717
+ @media (max-width : 700px ) and (orientation : portrait) {
718
+ .help-wrapper {
719
+ position : flex;
720
+ flex-direction : column;
721
+ width : 200vw ;
722
+ }
723
+ }
724
+
681
725
.help-title {
682
726
font-size : 2rem ;
683
- margin-top : 1.5 rem ;
727
+ margin-top : 1 rem ;
684
728
margin-left : 2rem ;
685
729
color : hsl (186deg 92% 11% );
686
730
}
687
731
732
+ @media (max-width : 700px ) and (orientation : portrait) {
733
+ .help-title {
734
+ font-size : 1.2rem ;
735
+ }
736
+ }
737
+
688
738
.help-subtitle {
689
739
font-size : 1.5rem ;
690
740
padding-top : 1.5rem ;
Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ export const Help = () => {
47
47
} ;
48
48
return (
49
49
< >
50
- < header className = "usr -header" >
51
- < h1 className = "help-title" > How do I use the urdr service ?</ h1 >
50
+ < header className = "help -header" >
51
+ < h1 className = "help-title" > What is urdr?</ h1 >
52
52
< HeaderUser username = { context . user ? context . user . login : "" } />
53
53
</ header >
54
54
< main className = "help-wrapper" >
You can’t perform that action at this time.
0 commit comments