Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Adds ability to override [flex] attributes under different media queries... #707

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/core/style/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@
$offsetName: 'offset-#{$name}';
}

[#{$flexName}] {
flex: 0 0 100%;
max-width: 100%;
}

// (0-19) * 5 = 0-95%
@for $i from 0 through 19 {
[#{$flexName}="#{$i * 5}"] {
Expand Down