start9-landing/src/assets/styles/support.scss

26 lines
426 B
SCSS
Raw Normal View History

2022-07-28 11:55:52 +00:00
section#support {
display: flex;
flex-direction: column;
align-items: center;
padding: 6rem;
background: var(--c-1);
margin-bottom: 6rem;
.cols {
display: flex;
align-items: center;
justify-content: center;
gap: 6rem;
.col {
max-width: 37vw;
}
}
img {
max-height: 40vh;
}
@media only screen and (max-width: 1200px) {
.cols{
flex-direction: column;
}
}
}