CUD-Traffic-AI / frontend /src /index.css
Rajeev Ranjan Pandey
Refine UI and fix model selection bugs
e078b1d
raw
history blame
458 Bytes
@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;
}