fix(SW-369): display contact section in loyalty sidebar on mobile
This commit is contained in:
@@ -1,19 +1,29 @@
|
|||||||
.contactContainer {
|
.contactContainer {
|
||||||
display: none;
|
border-top: 1px solid var(--UI-Grey-30);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: var(--Spacing-x2);
|
||||||
|
justify-content: center;
|
||||||
|
padding-top: var(--Spacing-x2);
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact {
|
||||||
|
display: grid;
|
||||||
|
gap: var(--Spacing-x-one-and-half);
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact > div {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 1367px) {
|
@media screen and (min-width: 1367px) {
|
||||||
.contactContainer {
|
.contactContainer {
|
||||||
border-top: 1px solid var(--UI-Grey-30);
|
align-items: start;
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: var(--Spacing-x2);
|
|
||||||
justify-content: center;
|
|
||||||
padding-top: var(--Spacing-x2);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact {
|
.contact > div {
|
||||||
display: grid;
|
justify-content: start;
|
||||||
gap: var(--Spacing-x-one-and-half);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user