mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-14 05:11:19 -04:00
Fix text-shadow CSS.
The semicolons made it look like the end of a declaration. I got these errors in the Firefox console: Expected declaration but found ‘1px’. Skipped to next declaration. 1 embed.html:29:17 Expected declaration but found ‘-1px’. Skipped to next declaration. 1 embed.html:30:17
This commit is contained in:
parent
433a47fdf7
commit
fd9efa1001
1 changed files with 2 additions and 2 deletions
|
@ -25,8 +25,8 @@
|
||||||
font-variant: small-caps;
|
font-variant: small-caps;
|
||||||
text-shadow: 0 0 5px #fef,
|
text-shadow: 0 0 5px #fef,
|
||||||
0 1px 2px #fef,
|
0 1px 2px #fef,
|
||||||
0 -1px 2px #fef;
|
0 -1px 2px #fef,
|
||||||
1px 0px 3px #fef;
|
1px 0px 3px #fef,
|
||||||
-1px 0px 3px #fef;
|
-1px 0px 3px #fef;
|
||||||
}
|
}
|
||||||
.active {
|
.active {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue