15 lines
330 B
CSS
15 lines
330 B
CSS
@import "tailwindcss";
|
|
|
|
/* Reset some default styles that conflict with Tailwind */
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* Custom styles that don't conflict with Tailwind */
|
|
:root {
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
} |