@zap-wunschlachen/wl-shared-components 1.0.28 → 1.0.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -36,4 +36,19 @@
|
|
|
36
36
|
display: flex;
|
|
37
37
|
align-items: center;
|
|
38
38
|
justify-content: center;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/* Mobile landscape mode - enable scrolling */
|
|
42
|
+
@media (max-height: 500px) and (orientation: landscape) {
|
|
43
|
+
.background {
|
|
44
|
+
overflow: auto;
|
|
45
|
+
align-items: flex-start;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.background__content {
|
|
49
|
+
height: auto;
|
|
50
|
+
min-height: 100%;
|
|
51
|
+
padding: 1rem;
|
|
52
|
+
box-sizing: border-box;
|
|
53
|
+
}
|
|
39
54
|
}
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
min-height: 100vh;
|
|
3
3
|
display: flex;
|
|
4
4
|
justify-content: center;
|
|
5
|
-
background-image: url('../Background/wunschlachen-background.svg');
|
|
6
5
|
background-repeat: no-repeat;
|
|
7
6
|
background-position: center;
|
|
8
7
|
background-size: auto;
|
|
@@ -122,3 +121,52 @@
|
|
|
122
121
|
height: 340px;
|
|
123
122
|
}
|
|
124
123
|
}
|
|
124
|
+
|
|
125
|
+
/* Small mobile screens with limited height (e.g. iPhone SE) */
|
|
126
|
+
@media (max-width: 480px) and (max-height: 700px) {
|
|
127
|
+
.error-page__grid {
|
|
128
|
+
gap: 1rem;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.error-page__content {
|
|
132
|
+
padding: 1rem;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.error-page__header {
|
|
136
|
+
gap: 0.5rem;
|
|
137
|
+
margin-bottom: 0.75rem;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.error-page__icon {
|
|
141
|
+
width: 80px;
|
|
142
|
+
height: 109px;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.error-page__description {
|
|
146
|
+
margin-top: 0.75rem;
|
|
147
|
+
margin-bottom: 0.75rem;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
@media (max-width: 480px) and (max-height: 600px) {
|
|
152
|
+
.error-page__icon {
|
|
153
|
+
display: none;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.error-page__grid {
|
|
157
|
+
gap: 0.5rem;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.error-page__content {
|
|
161
|
+
padding: 0.5rem;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.error-page__header {
|
|
165
|
+
margin-bottom: 0.5rem;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.error-page__description {
|
|
169
|
+
margin-top: 0.5rem;
|
|
170
|
+
margin-bottom: 0.5rem;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
@@ -274,6 +274,70 @@
|
|
|
274
274
|
}
|
|
275
275
|
}
|
|
276
276
|
|
|
277
|
+
/* Small mobile screens with limited height (e.g. iPhone SE) */
|
|
278
|
+
@media (max-width: 480px) and (max-height: 700px) {
|
|
279
|
+
.maintenance-banner__content {
|
|
280
|
+
gap: 24px;
|
|
281
|
+
padding: 1rem;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.maintenance-banner__text-content {
|
|
285
|
+
gap: 24px;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.maintenance-banner__logo-section {
|
|
289
|
+
gap: 16px;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.maintenance-banner__logo-headline {
|
|
293
|
+
gap: 16px;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.maintenance-banner__body-section {
|
|
297
|
+
gap: 12px;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.maintenance-banner__illustration {
|
|
301
|
+
width: 100px;
|
|
302
|
+
height: 100px;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.maintenance-banner__title {
|
|
306
|
+
font-size: 24px;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.maintenance-banner__description,
|
|
310
|
+
.maintenance-banner__contact-text {
|
|
311
|
+
font-size: 14px;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.maintenance-banner__button {
|
|
315
|
+
font-size: 14px;
|
|
316
|
+
padding: 10px 20px;
|
|
317
|
+
height: auto;
|
|
318
|
+
width: auto;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
@media (max-width: 480px) and (max-height: 600px) {
|
|
323
|
+
.maintenance-banner__illustration {
|
|
324
|
+
display: none;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.maintenance-banner__title {
|
|
328
|
+
font-size: 22px;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.maintenance-banner__content {
|
|
332
|
+
gap: 16px;
|
|
333
|
+
padding: 0.5rem;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.maintenance-banner__text-content {
|
|
337
|
+
gap: 16px;
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
|
|
277
341
|
/* Respect users who prefer reduced motion: disable transitions/animations */
|
|
278
342
|
@media (prefers-reduced-motion: reduce) {
|
|
279
343
|
.maintenance-banner__button,
|