Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

sass css variables root

$accent-color: #fbbc04

:root
  // WRONG, will not work in recent Sass versions.
  --accent-color-wrong: $accent-color

  // RIGHT, will work in all Sass versions.
  --accent-color-right: #{$accent-color}
Source by sass-lang.com #
 
PREVIOUS NEXT
Tagged: #sass #css #variables #root
ADD COMMENT
Topic
Name
8+8 =