@salesforcedevs/dx-components 1.22.0-responsive-1 → 1.22.0-responsive-3
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 +1 -1
- package/src/modules/dx/footer/footer.css +11 -33
package/package.json
CHANGED
|
@@ -30,6 +30,7 @@ footer.signup-variant-no-signup {
|
|
|
30
30
|
.footer-group {
|
|
31
31
|
display: flex;
|
|
32
32
|
flex-direction: column;
|
|
33
|
+
flex: 0 1 content;
|
|
33
34
|
}
|
|
34
35
|
|
|
35
36
|
.footer-group > *:not(:last-child) {
|
|
@@ -168,7 +169,7 @@ footer.signup-variant-no-signup {
|
|
|
168
169
|
grid-template:
|
|
169
170
|
"logo general" auto
|
|
170
171
|
"socials general" max-content
|
|
171
|
-
"locales general" max-content / auto
|
|
172
|
+
"locales general" max-content / auto fit-content(100%);
|
|
172
173
|
background: var(--dx-footer-themed-background-color);
|
|
173
174
|
padding-top: var(--dx-g-spacing-4xl);
|
|
174
175
|
padding-bottom: var(--dx-g-spacing-3xl);
|
|
@@ -188,9 +189,12 @@ footer.signup-variant-no-signup {
|
|
|
188
189
|
|
|
189
190
|
.general {
|
|
190
191
|
grid-area: general;
|
|
191
|
-
display:
|
|
192
|
-
|
|
193
|
-
|
|
192
|
+
display: flex;
|
|
193
|
+
flex-wrap: wrap;
|
|
194
|
+
gap: var(--dx-g-spacing-4xl);
|
|
195
|
+
height: 218px;
|
|
196
|
+
overflow: hidden;
|
|
197
|
+
justify-content: flex-end;
|
|
194
198
|
}
|
|
195
199
|
|
|
196
200
|
.locales {
|
|
@@ -357,19 +361,7 @@ footer.signup-variant-no-signup {
|
|
|
357
361
|
}
|
|
358
362
|
|
|
359
363
|
.general {
|
|
360
|
-
|
|
361
|
-
}
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
@media screen and (max-width: 950px) {
|
|
365
|
-
.footer-group:nth-child(3) {
|
|
366
|
-
display: none;
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
@media screen and (max-width: 820px) {
|
|
371
|
-
.footer-group:nth-child(2) {
|
|
372
|
-
display: none;
|
|
364
|
+
gap: var(--dx-g-spacing-xl);
|
|
373
365
|
}
|
|
374
366
|
}
|
|
375
367
|
|
|
@@ -428,24 +420,10 @@ footer.signup-variant-no-signup {
|
|
|
428
420
|
.subscription p {
|
|
429
421
|
width: 100%;
|
|
430
422
|
}
|
|
431
|
-
|
|
432
|
-
.footer-group:nth-child(2),
|
|
433
|
-
.footer-group:nth-child(3) {
|
|
434
|
-
display: flex;
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
@media screen and (max-width: 600px) {
|
|
439
|
-
.footer-group:nth-child(3) {
|
|
440
|
-
display: none;
|
|
441
|
-
}
|
|
442
423
|
}
|
|
443
424
|
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
display: none;
|
|
447
|
-
}
|
|
448
|
-
|
|
425
|
+
/* MOBILE - SMALL */
|
|
426
|
+
@media screen and (max-width: 640px) {
|
|
449
427
|
/* TOP */
|
|
450
428
|
.subscription dx-input {
|
|
451
429
|
width: 100%;
|