Skip to content

RichieChoo/postcss-flexbugs-fixes-bug-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

postcss-flexbugs-fixes-bug-demo

Reproduce bash

npm install && npm run test

Compare

language Input Output
less @vm:10px;
.test{
    flex: 0 1 21 * @vm
}
@vm:10px;
.test{
    flex: 0 1 21
}
scss $vm:10px;
.test{
    flex: 0 1 21 / $vm
}
$vm:10px;
.test{
    flex: 0 1 21
}
sass $vm:10px;
.test
    flex: 0 1 21 / $vm;
$vm:10px
.test
    flex: 0 1 21

About

postcss-flexbugs-fixes bug demo

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published