Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions docs/src/components/markdown.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,19 @@
@apply text-base;
}

.markdown > p > a,
.markdown > ul > li > a,
.markdown > ol > li > a,
.markdown > blockquote > p > a,
.markdown > table > tbody > tr > td > a {
.markdown p > a,
.markdown ul > li > a,
.markdown ol > li > a,
.markdown blockquote > p > a,
.markdown table > tbody > tr > td > a {
@apply text-blue-600 font-semibold transition-colors duration-150 ease-out;
}

.markdown > p > a:hover,
.markdown > ul > li > a:hover,
.markdown > ol > li > a:hover,
.markdown > blockquote > p > a:hover,
.markdown > table > tbody > tr > td > a:hover {
.markdown p > a:hover,
.markdown ul > li > a:hover,
.markdown ol > li > a:hover,
.markdown blockquote > p > a:hover,
.markdown table > tbody > tr > td > a:hover {
@apply text-blue-800 transition-colors duration-150 ease-out;
}

Expand Down