Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
display styles, unfortunately, need to be !important.
Browse files Browse the repository at this point in the history
  • Loading branch information
sorvell committed Apr 9, 2014
1 parent d41a6be commit a5cfc2e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions core-layout-host.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
*/

:host {
display: -webkit-box;
display: -ms-flexbox;
display: -moz-flex;
display: -webkit-flex;
display: flex;
display: -webkit-box !important;
display: -ms-flexbox !important;
display: -moz-flex !important;
display: -webkit-flex !important;
display: flex !important;
}

:host([core-flow=h]) {
Expand Down
10 changes: 5 additions & 5 deletions core-layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ license that can be found in the LICENSE file.
*/

[core-flow] {
display: -webkit-box;
display: -ms-flexbox;
display: -moz-flex;
display: -webkit-flex;
display: flex;
display: -webkit-box !important;
display: -ms-flexbox !important;
display: -moz-flex !important;
display: -webkit-flex !important;
display: flex !important;
}

[core-flow=h] {
Expand Down

0 comments on commit a5cfc2e

Please sign in to comment.