55 lines
995 B
CSS
55 lines
995 B
CSS
.wrapper {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
grid-template-rows: auto;
|
|
gap: var(--Spacing-x2);
|
|
font-family: var(--typography-Body-Regular-fontFamily);
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.heading {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.soMeIcons {
|
|
display: flex;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
}
|
|
|
|
.ecoLabel {
|
|
display: flex;
|
|
align-items: center;
|
|
column-gap: var(--Spacing-x-one-and-half);
|
|
grid-column: 2 / 3;
|
|
grid-row: 3 / 4;
|
|
font-size: var(--typography-Footnote-Regular-fontSize);
|
|
line-height: ();
|
|
}
|
|
|
|
.ecoLabelText {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.googleMaps {
|
|
text-decoration: none;
|
|
font-family: var(--typography-Body-Regular-fontFamily);
|
|
color: var(--Base-Text-Medium-contrast);
|
|
}
|