-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc665d0
commit ed9aae8
Showing
2 changed files
with
63 additions
and
9 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
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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
.prose p:not(.not-prose) { | ||
@apply text-on-surface my-4; | ||
} | ||
|
||
.prose h1 { | ||
@apply text-4xl font-bold mb-6 mt-0; | ||
} | ||
|
||
.prose h2 { | ||
@apply text-2xl font-bold mb-4 mt-8 border-t border-outline-variant pt-10 scroll-mt-6; | ||
} | ||
|
||
.prose h3 { | ||
@apply text-xl font-bold mt-7 mb-2; | ||
} | ||
|
||
.prose h4 { | ||
@apply text-lg font-bold mt-5 mb-1.5; | ||
} | ||
|
||
.prose blockquote { | ||
@apply border border-outline-variant my-4 px-4 rounded; | ||
} | ||
|
||
.prose table { | ||
@apply my-2 text-sm; | ||
} | ||
|
||
.prose thead { | ||
@apply border-b border-outline-variant; | ||
} | ||
|
||
.prose th { | ||
@apply font-bold text-left pb-1; | ||
} | ||
|
||
.prose tr { | ||
@apply border-b border-outline-variant; | ||
} | ||
.prose tr:last-child { | ||
@apply border-none; | ||
} | ||
|
||
.prose td { | ||
@apply py-1 pr-2; | ||
} | ||
|
||
.prose td:first-child { | ||
@apply whitespace-nowrap; | ||
} | ||
|
||
.prose ul { | ||
@apply list-disc list-inside my-4; | ||
} | ||
|
||
.prose ol { | ||
@apply list-decimal list-inside my-4; | ||
} | ||
|
||
.prose a:not(.not-prose) { | ||
@apply text-blue-700 hover:text-blue-600 dark:text-blue-300 dark:hover:text-blue-400; | ||
} |