fix: css dark theme rule

This commit is contained in:
Cory Dransfeldt 2023-08-14 06:31:04 -07:00
parent 314367c1b1
commit 561bf48c74
No known key found for this signature in database

View file

@ -66,11 +66,6 @@ pre {
border: 1px solid theme(colors.gray.700);
}
.dark code,
.dark pre {
@apply bg-gray-900;
}
.tag--button {
@apply font-semibold;
@apply py-2;
@ -93,11 +88,6 @@ pre {
@apply inline-block;
}
.dark .tag--button {
color: theme(colors.gray.900);
background: theme(colors.purple.400);
}
.tag--button:hover,
.tag--button:active,
.tag--button:focus {
@ -165,4 +155,9 @@ code[class*=language-], pre[class*=language-] {
.link--icon:hover svg {
color: theme(colors.pink.500)
}
.tag--button {
color: theme(colors.gray.900);
background: theme(colors.purple.400);
}
}