20 lines
370 B
CSS
20 lines
370 B
CSS
.contactContainer {
|
|
display: none;
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.contactContainer {
|
|
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);
|
|
}
|
|
|
|
.contact {
|
|
display: grid;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
}
|
|
}
|