prosemirror-markdown/src/styles/tailwind.css
2022-06-02 14:39:39 +00:00

19 lines
641 B
CSS

/* Injects Tailwind's base styles & any base styles registered by plugins. */
@tailwind base;
@layer base { /* custom CSS goes here */ }
/* Injects Tailwind's component classes & any component classes registered by plugins. */
@tailwind components;
@layer components { /* custom CSS goes here */ }
/* Injects Tailwind's utility classes & any utility classes registered by plugins. */
@tailwind utilities;
@layer utilities { /* custom CSS goes here */ }
/* Directive controlling where Tailwind injects responsive variations of utilities.
By default Tailwind normally append these at the end of your stylesheet. */
@tailwind screens;