Spaces:
Sleeping
Sleeping
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| :root { | |
| color-scheme: light; | |
| font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; | |
| } | |
| body { | |
| margin: 0; | |
| min-width: 320px; | |
| min-height: 100vh; | |
| color: #0f172a; | |
| background: #eef4ff; | |
| } | |
| * { | |
| box-sizing: border-box; | |
| } | |
| .line-clamp-5 { | |
| display: -webkit-box; | |
| -webkit-line-clamp: 5; | |
| -webkit-box-orient: vertical; | |
| overflow: hidden; | |
| } | |