Files
cultureat-bak/wp-content/themes/ccat/app/assets/css/containers.css

23 lines
466 B
CSS

@layer components {
.container {
@apply mx-auto;
}
.container-fluid {
@apply w-full max-w-screen px-4 sm:px-6 lg:px-8;
}
.container-full {
@apply w-full max-w-screen;
}
.container-sm {
@apply container max-w-screen-sm mx-auto;
}
.container-md {
@apply container max-w-screen-md mx-auto;
}
.container-lg {
@apply container max-w-screen-lg mx-auto;
}
.container-xl {
@apply container max-w-screen-xl mx-auto;
}
}