15 lines
234 B
CSS
15 lines
234 B
CSS
|
|
@tailwind base;
|
||
|
|
@tailwind components;
|
||
|
|
@tailwind utilities;
|
||
|
|
|
||
|
|
@layer base {
|
||
|
|
html {
|
||
|
|
/* Prevent text-size inflation on mobile */
|
||
|
|
-webkit-text-size-adjust: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
@apply bg-white text-gray-900 antialiased;
|
||
|
|
}
|
||
|
|
}
|