README / src /index.css
John Bowyer
Replace with org-card app - simpler React app for organization page
5acadf5
raw
history blame contribute delete
451 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
}
body {
margin: 0;
min-height: 100vh;
}
/* Scroll animation */
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}