Exemplo n.º 1
0
 public SassCompiler(SassSettings settings)
 {
     this.settings      = settings;
     autoprefixSettings = new CssAutoprefixSettings
     {
         Enabled = false
     };
 }
Exemplo n.º 2
0
 public SassCompiler(SassSettings settings, CssAutoprefixSettings autoprefixSettings)
 {
     this.settings           = settings;
     this.autoprefixSettings = autoprefixSettings;
 }
Exemplo n.º 3
0
 public CssAutoprefixer(CssAutoprefixSettings settings)
 {
     this.settings = settings;
 }