mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-02-06 04:08:26 -06:00
65 lines
929 B
CSS
65 lines
929 B
CSS
@import "./slim-select.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;
|
|
}
|
|
|
|
/* Custom scrollbar */
|
|
*,
|
|
*:hover {
|
|
/* Reset scrollbar*/
|
|
scrollbar-color: auto;
|
|
}
|
|
|
|
*::-webkit-scrollbar {
|
|
-webkit-appearance: none;
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
@apply bg-gray-500;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
@-moz-document url-prefix() {
|
|
* {
|
|
/* Fallback scrollbar style for Firefox */
|
|
scrollbar-width: thin;
|
|
}
|
|
}
|
|
|
|
/* 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;
|
|
} |