prettier/tests/stylefmt/readme
Pier Paolo Ramon 126727380d CSS: Every selector is now printed in its own line (#2047)
Changes the behaviour for line breaking inside selector lists (those
separated by ',') so that every selector is in its own line.

Fixes #1962
2017-06-08 07:46:24 -07:00
..
__snapshots__ CSS: Every selector is now printed in its own line (#2047) 2017-06-08 07:46:24 -07:00
jsfmt.spec.js Initial CSS support (#1636) 2017-05-24 10:52:12 -07:00
readme.css Initial CSS support (#1636) 2017-05-24 10:52:12 -07:00

readme.css

// mixin for clearfix
        @mixin      clearfix    ()      { &:before,
  &:after {
                content:" ";
    display              : table;  }

  &:after        {clear: both;}
   }.class
{
       padding:10px;@include        clearfix();}
     .base {  color: red;  } // placeholder

%base
{


padding: 12px
}

.foo{
@extend      .base;}

.bar
      {     @extend            %base;

}