This repository was archived by the owner on Sep 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 141
141
max-width : #{$value } ;
142
142
max-height : 100% ;
143
143
box-sizing : border-box ;
144
+
145
+ // Bug workaround for http://crbug.com/546034 - flex issues on Chrome 48
146
+ @if $i == 0 { min-width : 0 ; }
144
147
}
145
148
146
149
.layout-column > .#{$flexName } -#{$i * 5},
149
152
max-width : 100% ;
150
153
max-height : #{$value } ;
151
154
box-sizing : border-box ;
152
- }
153
155
156
+ // Bug workaround for http://crbug.com/546034 - flex issues on Chrome 48
157
+ @if $i == 0 { min-height : 0 ; }
158
+ }
154
159
155
160
}
156
161
157
162
.layout-row , .layout#{$name } -row {
158
163
> .#{$flexName } -33 , > .#{$flexName } -33 { flex : 1 1 33.33% ; max-width : 33.33% ; max-height : 100% ; box-sizing : border-box ; }
159
164
> .#{$flexName } -66 , > .#{$flexName } -66 { flex : 1 1 66.66% ; max-width : 66.66% ; max-height : 100% ; box-sizing : border-box ; }
165
+
166
+ // Bug workaround for http://crbug.com/546034 - flex issues on Chrome 48
167
+ > .flex { min-width : 0 ; }
168
+
160
169
}
161
170
.layout-column , .layout#{$name } -column {
162
171
> .#{$flexName } -33 , > .#{$flexName } -33 { flex : 1 1 33.33% ; max-width : 100% ; max-height : 33.33% ; box-sizing : border-box ; }
163
172
> .#{$flexName } -66 , > .#{$flexName } -66 { flex : 1 1 66.66% ; max-width : 100% ; max-height : 66.66% ; box-sizing : border-box ; }
173
+
174
+ // Bug workaround for http://crbug.com/546034 - flex issues on Chrome 48
175
+ > .flex { min-height : 0 ; }
164
176
}
165
177
166
178
}
You can’t perform that action at this time.
0 commit comments