Skip to content
#

scss

sass logo

Sass is a stylesheet language with a main implementation in Ruby. It is an extension of CSS that makes improvements to the old stylesheet format, such as being able to declare variables and using a cleaner nesting syntax.

Here are 10,416 public repositories matching this topic...

stylelint
tomyo
tomyo commented Mar 16, 2021

I have the following css, and if I take out the unit from 0rem, as stylelint suggests, it breaks.

What I have (ugly but working)

right: calc(-1 * max((100vw - #{$container-md}) / 2, 0rem));

What stylelint suggest me to do: (length-zero-no-unit error)

right: calc(-1 * max((100vw - #{$container-md}) / 2, 0));

The later option without unit is not a valid css lin

Created by Hampton Catlin, Natalie Weizenbaum, Chris Eppstein

Released November 28, 2006

Latest release about 5 years ago

Repository
sass/sass
Website
sass-lang.com
Wikipedia
Wikipedia