We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f542d4 commit 1f71f0cCopy full SHA for 1f71f0c
README.md
@@ -69,11 +69,23 @@ render_pdf:
69
70
```css
71
#page-container {
72
- background-color: white !important;
73
- background-image: none !important;
+ background-color: transparent;
+ background-image: none;
74
+}
75
+#sidebar{
76
77
}
78
.pf{
- box-shadow: none !important;
79
+ box-shadow: none;
80
81
+img {
82
+ mix-blend-mode: multiply;
83
84
+@media (prefers-color-scheme: dark) {
85
+ img {
86
+ filter: invert(1);
87
+ mix-blend-mode: lighten;
88
+ }
89
90
```
91
0 commit comments