12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @import "tailwindcss";
-
- :root {
- --background: #ffffff;
- --foreground: #171717;
- }
-
- @theme inline {
- --color-background: var(--background);
- --color-foreground: var(--foreground);
- --font-sans: var(--font-geist-sans);
- --font-mono: var(--font-geist-mono);
- }
-
- @media (prefers-color-scheme: dark) {
- :root {
- --background: #0a0a0a;
- --foreground: #ededed;
- }
- }
-
- body {
- background: var(--background);
- color: var(--foreground);
- font-family: Arial, Helvetica, sans-serif;
- }
-
- body, * {
- scrollbar-width: thin;
- scrollbar-color: rgba(100, 100, 100, 0.3) transparent;
- }
-
- .custom-center-menu > .ant-menu-item {
- margin-left: auto !important;
- margin-right: auto !important;
- }
-
- /* Target the whole page or a specific container */
- ::-webkit-scrollbar {
- width: 2px; /* vertical scrollbar */
- height: 4px; /* horizontal scrollbar */
- }
-
- ::-webkit-scrollbar-track {
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- background-color: rgba(100, 100, 100, 0.3); /* light gray thumb */
- border-radius: 10px;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(100, 100, 100, 0.6);
- }
|