fix: render external links

This commit is contained in:
Faisal Amir 2024-01-08 14:15:46 +07:00
parent b9f82fd778
commit c9aceef2f5

View File

@ -6,6 +6,14 @@
ol {
list-style: auto;
padding-left: 24px;
white-space: normal;
}
a {
@apply text-blue-600 dark:text-blue-300;
&:hover {
@apply underline;
}
}
}