Files
pgbackweb/internal/view/static/css/tailwind.css
2024-07-23 15:19:11 -06:00

43 lines
584 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.normal-width {
@apply container mx-auto px-4 max-w-[1920px];
}
}
/* General */
html {
overflow-x: hidden;
overflow-y: auto;
}
/* For AlpineJS */
[x-cloak] {
display: none !important;
}
/* For HTMX */
.htmx-indicator {
display: none;
}
.htmx-request .htmx-indicator {
display: block;
}
.htmx-request.htmx-indicator {
display: block;
}
/* For Gomponents Lucide */
svg[data-glucide="icon"]:not([class*="size-"]) {
@apply size-4;
}
/* Scrollbar */
* {
scrollbar-width: thin;
}