prettier/tests/stylefmt/readme
Evilebot Tnawi f5e74cd70a
fix(css): at rules improve formatting and tests (#3828)
2018-02-02 18:06:47 +03:00
..
__snapshots__ fix(css): at rules improve formatting and tests (#3828) 2018-02-02 18:06:47 +03:00
jsfmt.spec.js Change run_spec to have explicit parser list (#3356) 2017-11-30 03:31:52 -03: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;

}