22 lines
419 B
CSS
22 lines
419 B
CSS
.gallery-website-screens {
|
|
@apply bg-neutral-100 p-10 w-screen;
|
|
margin: 0 calc(50% - 50vw);
|
|
ul {
|
|
@apply gap-4 px-0 md:px-4 lg:px-12 justify-center list-none mx-auto;
|
|
&.is-grid {
|
|
@apply grid grid-cols-2 lg:grid-cols-3;
|
|
}
|
|
&.is-flex {
|
|
@apply flex flex-nowrap;
|
|
}
|
|
&.is-mobile-capture {
|
|
@apply gap-24;
|
|
img {
|
|
@apply rounded-3xl max-w-60;
|
|
}
|
|
}
|
|
|
|
max-width: 1800px;
|
|
}
|
|
}
|