mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-02-09 21:58:25 -06:00
43 lines
584 B
CSS
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;
|
|
} |