fix: css dark theme rule
This commit is contained in:
parent
314367c1b1
commit
561bf48c74
1 changed files with 5 additions and 10 deletions
15
tailwind.css
15
tailwind.css
|
@ -66,11 +66,6 @@ pre {
|
||||||
border: 1px solid theme(colors.gray.700);
|
border: 1px solid theme(colors.gray.700);
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark code,
|
|
||||||
.dark pre {
|
|
||||||
@apply bg-gray-900;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tag--button {
|
.tag--button {
|
||||||
@apply font-semibold;
|
@apply font-semibold;
|
||||||
@apply py-2;
|
@apply py-2;
|
||||||
|
@ -93,11 +88,6 @@ pre {
|
||||||
@apply inline-block;
|
@apply inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark .tag--button {
|
|
||||||
color: theme(colors.gray.900);
|
|
||||||
background: theme(colors.purple.400);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tag--button:hover,
|
.tag--button:hover,
|
||||||
.tag--button:active,
|
.tag--button:active,
|
||||||
.tag--button:focus {
|
.tag--button:focus {
|
||||||
|
@ -165,4 +155,9 @@ code[class*=language-], pre[class*=language-] {
|
||||||
.link--icon:hover svg {
|
.link--icon:hover svg {
|
||||||
color: theme(colors.pink.500)
|
color: theme(colors.pink.500)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tag--button {
|
||||||
|
color: theme(colors.gray.900);
|
||||||
|
background: theme(colors.purple.400);
|
||||||
|
}
|
||||||
}
|
}
|
Reference in a new issue