Files
ttrpg-initiative-tracker/src/index.css
T

20 lines
559 B
CSS
Raw Normal View History

2025-05-25 22:21:45 -04:00
/* src/index.css */
/* If using Tailwind CSS, you would typically import its base styles, components, and utilities here */
/* For example, if you followed Tailwind's setup guide for Create React App: */
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
margin: 0;
2026-04-25 20:25:34 -04:00
font-family: 'Alegreya Sans', system-ui, sans-serif;
2025-05-25 22:21:45 -04:00
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
/* Add any other global base styles here */