Igosuki / compass-mixins

A collection of compass' stylesheet for bower dependencies and libsass
Other
592 stars 197 forks source link

Missing mixins #77

Open botteu opened 8 years ago

botteu commented 8 years ago

Great lib! But it seems to be missing some mixins… The ones I've noticed so far are column-span and column-fill.

Is there a reason why these weren't included?

Keep up the good work!

mkircher commented 8 years ago

It appears that first-value-of function is also out. I solved the issue where it was being used in the border-radius mixin (for the experimental block) by creating an nth wrapper:

@function first-value-of( $values ){
  @return nth($values, 1);
}