20 lines
569 B
CSS
20 lines
569 B
CSS
/* 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;
|
|
font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
|
|
-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 */ |