-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add TailwindCSS for demo styles
- Loading branch information
Showing
7 changed files
with
897 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,31 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
body { | ||
font-family: sans-serif; | ||
@apply font-sans m-4; | ||
} | ||
|
||
a { | ||
@apply text-blue-600 underline; | ||
} | ||
|
||
button { | ||
@apply bg-blue-500 hover:bg-blue-600 active:bg-blue-700 text-white py-1 px-2 rounded; | ||
} | ||
|
||
h1 { | ||
@apply text-3xl font-bold mb-3; | ||
} | ||
|
||
h2 { | ||
@apply text-2xl font-bold mb-2; | ||
} | ||
|
||
h3 { | ||
@apply text-xl font-bold mb-1; | ||
} | ||
|
||
ul > li { | ||
@apply list-disc ml-4; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.