Skip to content

Commit 42f8870

Browse files
committed
[web-animations-1] Fix rgba() syntax so that the validator likes it
Otherwise I got the following error when trying to publish with echidna: ``` [23@37] CSS: “background”: “0.05” is not a valid color 3 or 6 hexadecimals numbers.<br><a href=\"https://validator.w3.org/nu/?doc=http://owl.w3.org//6dbe5b84-fd2c-44f9-a1fb-74baacb48b07/Overview.html\">HTML validator</a> ```
1 parent 8871396 commit 42f8870

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web-animations-1/Overview.bs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
}
99
@media (prefers-color-scheme: dark) {
1010
.informative-bg {
11-
background: rgba(255 255 255 .05);
11+
background: rgba(255, 255, 255, .05);
1212
}
1313
}
1414

0 commit comments

Comments
 (0)