compiled icon indicating copy to clipboard operation
compiled copied to clipboard

New Chrome ignores CSS vars with no name

Open at-nathan opened this issue 2 years ago • 0 comments

Describe the bug Current Chrome as of posting (105.0.5195.102) will ignore CSS var defined with no name (i.e. --)

/* Will be stripped by chrome */
--: black;
/* Will be ignored by chrome */
--named-var: var(--);

Compiled currently uses this var name for empty var values. This is preventing the upgrade of loki as VR tests are failing due to it using affected newer version of Chromium.

at-nathan avatar Sep 12 '22 02:09 at-nathan