17 lines
327 B
CSS
17 lines
327 B
CSS
.contactContainer {
|
|
display: none;
|
|
}
|
|
|
|
@media screen and (min-width: 950px) {
|
|
.contactContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-top: 0.5px solid var(--Base-Border-Disabled);
|
|
padding: 3.4rem;
|
|
text-align: center;
|
|
gap: 6.2rem;
|
|
}
|
|
}
|