fix(css): unset hardcoded calibre color and background color, closes #3448 (#3457)

This commit is contained in:
Huang Xin
2026-03-03 18:06:03 +08:00
committed by GitHub
parent 35ade2c855
commit 0609e828b1
+4 -4
View File
@@ -227,6 +227,10 @@ const getColorStyles = (
border-color: unset;
background-color: ${bg} !important;
}
.calibre {
color: unset;
background-color: unset;
}
`;
return colorStyles;
};
@@ -392,10 +396,6 @@ const getLayoutStyles = (
display: none;
}
.calibre {
color: unset;
}
div:has(> img, > svg) {
max-width: 100% !important;
}