You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The fixed-grid mixin currently uses a few "flags". These are actually arguments which are set to false by default, and the consumer can set them to true individually easily because Sass allows specifying arguments out of order when the argument name is given.
Just for convenience (and some Sassy source code fun), it wouldn't be hard to allow an alternative syntax with spaces (but using commas to separate flags):
@include fixed-grid(3, $flags: distribute dangling, dangling at beginning);
We could still support the current syntax in parallel or just drop it completely.
The text was updated successfully, but these errors were encountered:
The
fixed-grid
mixin currently uses a few "flags". These are actually arguments which are set tofalse
by default, and the consumer can set them totrue
individually easily because Sass allows specifying arguments out of order when the argument name is given.However, the number of flags would eventually grow, and this can become cumbersome. It can be solved much easier:
Just for convenience (and some Sassy source code fun), it wouldn't be hard to allow an alternative syntax with spaces (but using commas to separate flags):
We could still support the current syntax in parallel or just drop it completely.
The text was updated successfully, but these errors were encountered: