Files
payloadcms/templates/vercel-postgres/src/components/Logos/styles.module.scss
Elliot DeNolf a3ee07f693 chore: import vercel-postgres one-click template (#6564)
Import vercel one-click template
2024-05-29 18:06:52 -04:00

49 lines
771 B
SCSS

.logos {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
height: 100%;
min-height: 50vh;
width: 100%;
gap: 80px;
@media screen and (max-width: 600px) {
gap: 40px;
flex-direction: column;
}
}
.payloadLogo {
width: 100%;
height: auto;
max-width: 320px;
display: flex;
justify-content: flex-end;
align-items: center;
}
.nextLogo {
width: 100%;
height: auto;
max-width: 320px;
display: flex;
justify-content: flex-start;
align-items: center;
color: #fff;
}
.payloadLogo,
.nextLogo {
@media screen and (max-width: 1200px) {
width: 25vw;
height: auto;
}
@media screen and (max-width: 600px) {
width: 50vw;
justify-content: center;
align-items: center;
}
}