geosphere-maps/app/globals.css

32 lines
475 B
CSS
Raw Permalink Normal View History

2023-07-28 06:30:40 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2023-09-22 09:33:13 +00:00
@import '@arcgis/core/assets/esri/themes/light/main.css';
2023-07-28 06:30:40 +00:00
:root {
--foreground-rgb: 0, 0, 0;
2023-09-22 09:33:13 +00:00
--background-rgb: 255, 255, 255;
2023-07-28 06:30:40 +00:00
}
@media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: 255, 255, 255;
2023-09-22 09:33:13 +00:00
--background-rgb: 0, 0, 0;
2023-07-28 06:30:40 +00:00
}
}
2023-09-22 09:33:13 +00:00
html,
2023-07-28 06:30:40 +00:00
body {
color: rgb(var(--foreground-rgb));
2023-09-22 09:33:13 +00:00
background: rgb(var(--background-end-rgb));
}
2023-09-28 11:27:46 +00:00
body {
display: flex;
}
2023-09-22 09:33:13 +00:00
* {
box-sizing: border-box;
2023-07-28 06:30:40 +00:00
}