22 lines
266 B
CSS
22 lines
266 B
CSS
.simple-screen {
|
|
@apply alignfull my-0;
|
|
img {
|
|
@apply mx-auto;
|
|
}
|
|
|
|
&--full {
|
|
img {
|
|
@apply w-full h-auto;
|
|
}
|
|
}
|
|
&--large {
|
|
@apply px-0 md:p-24;
|
|
img {
|
|
@apply w-full max-w-screen-2xl h-auto;
|
|
}
|
|
}
|
|
&--white {
|
|
@apply py-0;
|
|
}
|
|
}
|