Skip to content

Commit

Permalink
chore: implement tailwindcss
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Apr 29, 2024
1 parent 96668b9 commit 84da6c8
Show file tree
Hide file tree
Showing 7 changed files with 361 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"cSpell.words": [
"tailwindcss"
]
}
1 change: 1 addition & 0 deletions app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
Scripts,
ScrollRestoration,
} from "@remix-run/react";
import "./tailwind.css";

export default function App() {
return (
Expand Down
3 changes: 3 additions & 0 deletions app/tailwind.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
Loading

0 comments on commit 84da6c8

Please sign in to comment.