bcinarli / caffeine

Caffeine is a set of Sass mixins and functions ready to use for projects.

Home Page:http://caffeine.melange.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flex() mixin has wrong output

bcinarli opened this issue · comments

@include flex();

has output as

display: -webkit-flex();
display: flex();

it should be

display: -webkit-flex;
display: flex;