Skip to content

Commit

Permalink
fix: update default app.css tailwind syntax to use @tailwind #3149
Browse files Browse the repository at this point in the history
Minor change to switch from older `@import 'tailwindcss/...` syntax to `@tailwind` as recommended in Tailwind docs.
  • Loading branch information
talss89 authored Sep 22, 2023
1 parent c0d3dd8 commit 9d7c56e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/styles/app.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
@tailwind base;
@tailwind components;
@tailwind utilities;

0 comments on commit 9d7c56e

Please sign in to comment.