We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 515ab50 + 4a84bf4 commit 7f1aff9Copy full SHA for 7f1aff9
1 file changed
resources/JetStream.css
@@ -41,6 +41,7 @@
41
--benchmark-done-result-color: #4A4A4A;
42
--gap: 3rem;
43
--width: 200px;
44
+ --nonDefaultRotate: 152deg;
45
}
46
47
html,
@@ -73,7 +74,12 @@ table {
73
74
75
76
body.nonDefaultParams {
- filter: hue-rotate(152deg);
77
+ filter: hue-rotate(var(--nonDefaultRotate));
78
+}
79
+
80
+/* error gets rotated too, rotate it back so it's still red */
81
+.nonDefaultParams .error {
82
+ filter: hue-rotate(calc(360deg - var(--nonDefaultRotate)));
83
84
85
.nonDefaultParams .summary {
0 commit comments