2024-02-21 00:22:59 +01:00
|
|
|
@import "/themes/tailwind-base.css";
|
2023-12-16 17:20:59 +01:00
|
|
|
@import "/themes/theme-default.css";
|
|
|
|
@import "/themes/theme-blue.css";
|
|
|
|
@import "/themes/theme-gold.css";
|
|
|
|
@import "/themes/theme-green.css";
|
|
|
|
@import "/themes/theme-nature.css";
|
|
|
|
@import "/themes/theme-netflix.css";
|
|
|
|
@import "/themes/theme-nord.css";
|
|
|
|
@import "/themes/theme-orange.css";
|
|
|
|
@import "/themes/theme-red.css";
|
|
|
|
|
2021-01-09 18:26:46 +01:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
2021-01-30 17:52:37 +01:00
|
|
|
|
2023-12-16 17:20:59 +01:00
|
|
|
/* Duplicated var names with color space modifiers for swatches in vscode. See https://github.com/tailwindlabs/tailwindcss/discussions/10619 */
|
2022-02-27 15:04:12 +01:00
|
|
|
|
2023-12-16 17:20:59 +01:00
|
|
|
@layer base {
|
|
|
|
* {
|
|
|
|
@apply border-border;
|
2021-09-03 14:11:23 +02:00
|
|
|
}
|
2023-12-16 17:20:59 +01:00
|
|
|
body {
|
|
|
|
@apply bg-background text-foreground;
|
2021-09-03 14:11:23 +02:00
|
|
|
}
|
2021-08-26 13:54:36 +02:00
|
|
|
}
|
2024-02-10 13:30:53 +01:00
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "Inter";
|
|
|
|
src: url("../fonts/Inter-VariableFont_slnt,wght.ttf");
|
|
|
|
}
|
2024-02-21 00:22:59 +01:00
|
|
|
|
|
|
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
|
|
.no-scrollbar::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hide scrollbar for IE, Edge and Firefox */
|
|
|
|
.no-scrollbar {
|
|
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
|
|
scrollbar-width: none; /* Firefox */
|
|
|
|
}
|