38 lines
575 B
SCSS
38 lines
575 B
SCSS
.collabContainer {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
|
|
span {
|
|
margin-right: 2em;
|
|
font-size: 1.6rem;
|
|
font-weight: bolder;
|
|
line-height: 2em;
|
|
}
|
|
}
|
|
|
|
.collabLogo {
|
|
max-width: 180px;
|
|
max-height: 100px;
|
|
width: auto;
|
|
height: auto;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.collabLogoRow {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 3rem;
|
|
padding: 1.5rem 0;
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
.collabContainer span {
|
|
margin-right: 1em;
|
|
margin-left: 1em;
|
|
}
|
|
}
|