Skip to content

Commit

Permalink
fix(panel-flex): add safari support
Browse files Browse the repository at this point in the history
[Finishes #83956396]

Signed-off-by: Beatrice Peng <bpeng@pivotal.io>
  • Loading branch information
Geoff Pleiss authored and bebepeng committed Dec 4, 2014
1 parent fd04971 commit ff50733
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions src/pivotal-ui/components/panels.scss
Original file line number Diff line number Diff line change
Expand Up @@ -136,17 +136,21 @@ By default, flex panels have no height. You must use an inline style to set the

.panel-flex {
display: block;
display: flex;
flex-direction: column;
@include display-flex;
@include flex-direction(column);

.panel-body {
flex: 1 0 auto;
align-self: auto;
@include flexbox((
flex: 1 0 auto,
align-self: auto
));
}

.panel-footer {
flex: 0 0 auto;
align-self: auto;
@include flexbox((
flex: 0 0 auto,
align-self: auto
));
}

}
Expand Down

0 comments on commit ff50733

Please sign in to comment.