`.Link`s aren't styled on Chrome
Opened this issue · 4 comments
bates64 commented
Related to Chrome rejecting :any-link
in app.css
, which is the same rule as .Link
is defined in. Fixing this will just require removing the a:any-link
selector from the rule, and adding .Link
to all links without it in the JS.
PullJosh commented
Maybe we need :-webkit-any-link
? Just a guess.
bates64 commented
:any-link
(syntax error on Chrome at the moment!) likely kills the entire a:any-link, .Link
construct. After we move all links to use .Link
we won't need the a:any-link
thing and it should be fixed.
PullJosh commented
Yup. 👍
bates64 commented
(Fixed in preact)