Files
harheimertc/assets/css/main.css
Torsten Schulz (local) bf1caefde4
All checks were successful
Code Analysis and Production Deploy / analyze (push) Successful in 7m31s
Code Analysis and Production Deploy / deploy-production (push) Has been skipped
Code Analysis and Production Deploy / deploy-test (push) Successful in 2m1s
feat: update security headers and improve content security policy; enhance hero image component and loading states in public news
2026-05-31 14:19:15 +02:00

40 lines
640 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #dc2626;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: #b91c1c;
}