Posts Tagged ‘sass’

Subscribe via RSS
  1. 09 Mar, 2020

    Sass !default and themeable design systems

    I’m working on a couple themeable design systems right now, and we’re architecting components to offer a white list of themeable CSS properties, so each brand can define their design language using design tokens and then pipe those through into […]

  2. 07 Jan, 2019

    Stepping away from Sass

    In this great post, Cathy Dutton explains how she removed Sass from her codebase. Why? She explains how she used to use Sass for layout, variables, and typography, but now native CSS features take care of that for her. I’ll […]

  3. 05 Oct, 2018

    Sass Selectors: To Nest Or Not To Nest?

    I threw a question out on Twitter regarding CSS/Sass authoring style. It was a difference between Option 1: .c-btn { … } .c-btn__icon { … } and Option 2: .c-btn { &__icon { … } } The results were interesting so […]