madebysource / lesshat

Smart LESS CSS mixins library.
lesshat.com
MIT License
2.19k stars 258 forks source link

.justify-content(space-between) does not work on safari/ios #105

Closed marcopeg closed 10 years ago

marcopeg commented 10 years ago

Hi, justfy-content(space-between) mixin produce webkit-justify-content: justify; which is not correct.

It should produce webkit-justify-content: space-between;

Thanks!

yoohahn commented 10 years ago

Have you tried with 3.0? Did a small test;

//test.less
@import url("../build/lesshat.less");

.space-betw {
  .justify-content(space-between);
}

output is

//test.css
.space-betw {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
marcopeg commented 10 years ago

yes it works perfect!

eMdOS commented 10 years ago

I'm using Chrome 37 and space-between is not working...