mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-26 06:32:03 +10:00
- Updated .prettierrc to include Tailwind CSS plugin and functions. - Added prettier-plugin-tailwindcss to package.json and pnpm-lock.yaml. - Refactored CSS classes in main.css and various TSX files for improved consistency and readability. - Adjusted spacing in several components to enhance layout and maintain uniformity.
26 lines
611 B
CSS
26 lines
611 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
* {
|
|
font-variant-ligatures: none;
|
|
|
|
@apply border-current;
|
|
}
|
|
|
|
#root {
|
|
@apply antialiased;
|
|
}
|
|
|
|
[data-page].hide-icons .ph {
|
|
@apply hidden;
|
|
}
|
|
|
|
[data-page].underline-links a {
|
|
@apply underline underline-offset-2;
|
|
}
|
|
|
|
.wysiwyg {
|
|
@apply prose-foreground prose max-w-none prose-headings:mb-2 prose-headings:mt-0 prose-p:mb-2 prose-p:mt-0 prose-p:leading-normal prose-a:break-all prose-ol:mb-2 prose-ol:mt-0 prose-ul:mb-2 prose-ul:mt-0 prose-li:mb-2 prose-li:mt-0 prose-li:leading-normal prose-img:mb-2 prose-img:mt-0 prose-hr:mb-2 prose-hr:mt-0;
|
|
}
|