Spaces:
Runtime error
Runtime error
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| /* Base styles */ | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| a { | |
| color: inherit; | |
| text-decoration: none; | |
| } | |
| /* Scrollbar styles */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| height: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #f1f1f1; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #888; | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #555; | |
| } | |
| /* Focus styles for accessibility */ | |
| :focus-visible { | |
| outline: 2px solid #1976d2; | |
| } | |
| /* Transitions */ | |
| .fade-enter { | |
| opacity: 0; | |
| } | |
| .fade-enter-active { | |
| opacity: 1; | |
| transition: opacity 300ms; | |
| } | |
| .fade-exit { | |
| opacity: 1; | |
| } | |
| .fade-exit-active { | |
| opacity: 0; | |
| transition: opacity 300ms; | |
| } |