62 lines
1.0 KiB
CSS
62 lines
1.0 KiB
CSS
.wrapper {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
grid-template-rows: auto;
|
|
gap: var(--Space-x2);
|
|
font-family: var(--typography-Body-Regular-fontFamily);
|
|
margin-bottom: var(--Space-x3);
|
|
}
|
|
|
|
.address,
|
|
.contactInfo {
|
|
display: grid;
|
|
grid-template-columns: subgrid;
|
|
grid-template-rows: subgrid;
|
|
grid-column: 1 / 3;
|
|
grid-row: 1 / 4;
|
|
}
|
|
|
|
.contactInfo > li {
|
|
font-style: normal;
|
|
list-style-type: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 0;
|
|
}
|
|
|
|
.soMeIcons {
|
|
display: flex;
|
|
gap: var(--Space-x15);
|
|
}
|
|
|
|
.ecoLabel {
|
|
width: 38px;
|
|
height: auto;
|
|
}
|
|
|
|
.ecoLabel img {
|
|
width: 100%;
|
|
height: auto;
|
|
flex-shrink: 0;
|
|
grid-column: 1 / 3;
|
|
grid-row: 4 / 4;
|
|
}
|
|
|
|
.ecoContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
column-gap: var(--Space-x15);
|
|
grid-column: 1 / 3;
|
|
grid-row: 4 / 4;
|
|
font-size: var(--typography-Footnote-Regular-fontSize);
|
|
line-height: ();
|
|
margin-bottom: var(--Space-x1);
|
|
}
|
|
|
|
.ecoLabelText {
|
|
display: flex;
|
|
color: var(--UI-Text-Medium-contrast);
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|