mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-01-21 00:06:44 +01:00
cdd6ac9071
* initial implementation of review timeline * hooks * clean up and comments * reorganize components * colors and tweaks * remove touch events for now * remove touch events for now * fix vite config * use unix timestamps everywhere * fix corner rounding * comparison * use ReviewSegment type * update mock review event generator * severity type enum * remove testing code
42 lines
1018 B
CSS
42 lines
1018 B
CSS
@import "/themes/tailwind-base.css";
|
|
@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";
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
/* Duplicated var names with color space modifiers for swatches in vscode. See https://github.com/tailwindlabs/tailwindcss/discussions/10619 */
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
}
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: url("../fonts/Inter-VariableFont_slnt,wght.ttf");
|
|
}
|
|
|
|
/* 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 */
|
|
}
|