startae / hagrid

:straight_ruler: Hagrid is a mixin library for responsive websites and web applications.
https://hagrid.netlify.com/
MIT License
30 stars 3 forks source link

grid-calc logic question #53

Closed mmjaeger closed 8 years ago

mmjaeger commented 8 years ago

Hello I'm playing around with the use-calc code and I'm having some questions as to how the grid-calc mixin processes the input;

if I understand the code correctly, I basically could do something like: .col-push { @include push(auto); }

the css produces would be: .col-push { flex: 1 1 auto; }

that doesn't make any sense, does it or am I misreading the code??