-
Notifications
You must be signed in to change notification settings - Fork 73
Add mixin for align-items:stretch #96
Comments
|
This would still be valuable to explicitly set even if it is default, right? |
I realize I don't actually need a mixin for align-items:stretch where I 2016-06-06 16:50 GMT-07:00 zhaoz [email protected]:
|
/* for mobile a vertical setup centered along the cross-axis (horizontally)*/
.section {
@apply(--layout-vertical);
@apply(--layout-center);
}
@media (min-width: 960px) {
.section {
@apply(--layout-horizontal);
@apply(--layout-around-justified);
/* here we need to stretch */
}
} |
If anyone wants to send a PR for this, it would be greatly appreciated! 🙏 |
Which is preferred, PRs against |
@caranicas against master, please. |
…xibility in composition
There are mixins for all the other align-items values (flex-start, flex-end, center, baseline), but it doesn't look like there's a mixin for align-items:stretch yet.
The text was updated successfully, but these errors were encountered: