Files
REXNT/src/index.css

39 lines
996 B
CSS
Raw Normal View History

2025-12-23 17:09:40 +03:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2025-12-23 22:00:31 +03:00
@layer base {
:root {
2026-01-12 15:27:19 +03:00
overflow-y: scroll !important;
2026-01-09 20:12:38 +03:00
--primary: #041c40;
--secondary: #e06923;
--tertiary: #313131;
--bg-color: #F5EEE6;
--text-color: #313131;
--border-color: #d1c9be;
2025-12-23 22:00:31 +03:00
}
.dark {
2026-01-12 15:27:19 +03:00
overflow-y: scroll !important;
2026-01-09 20:12:38 +03:00
--primary: #041c40;
--secondary: #e06923;
--tertiary: #313131;
--bg-color: #313131;
--text-color: #F5EEE6;
--border-color: #4a4a4a;
2025-12-23 22:00:31 +03:00
}
body {
2026-01-12 15:27:19 +03:00
overflow-y: scroll !important;
2026-01-09 20:12:38 +03:00
margin: 0;
padding: 0;
min-height: 100vh;
width: 100vw;
overflow-x: hidden;
2025-12-23 22:00:31 +03:00
font-family: system-ui, -apple-system, sans-serif;
2026-01-09 20:12:38 +03:00
color: var(--text-color);
transition: background-color 0.3s ease, color 0.3s ease;
2025-12-23 22:00:31 +03:00
}
2026-01-09 20:12:38 +03:00
html {
2026-01-12 15:27:19 +03:00
overflow-y: scroll !important;
2026-01-09 20:12:38 +03:00
scroll-behavior: smooth;
overflow-x: hidden;
2025-12-23 22:00:31 +03:00
}
2025-12-23 17:09:40 +03:00
}