26 lines
497 B
CSS
26 lines
497 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
* { box-sizing: border-box; }
|
|
body {
|
|
background-color: #0f172a;
|
|
color: #ffffff;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
}
|
|
input, textarea, select {
|
|
font-size: 14px;
|
|
}
|
|
h1, h2, h3 { font-weight: 600; }
|
|
}
|
|
|
|
@layer utilities {
|
|
.line-clamp-2 {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
}
|