Skip to content
This repository has been archived by the owner on Apr 9, 2019. It is now read-only.

Commit

Permalink
Auto-prefix examples
Browse files Browse the repository at this point in the history
  • Loading branch information
aputinski committed Mar 30, 2015
1 parent f95f868 commit 23dc6ac
Showing 1 changed file with 26 additions and 6 deletions.
32 changes: 26 additions & 6 deletions examples/assets/example.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,30 @@ button {
}

.ReactNavigationControllerView {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}

.ReactNavigationControllerViewContent {
color: white;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
flex-direction: column;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}

/* HEADER */

.ReactNavigationControllerViewContent header {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
justify-content: space-between;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 0.75em;
}

Expand All @@ -78,11 +88,21 @@ button {
/* CONTENT */

.ReactNavigationControllerViewContent section {
flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}

.ReactNavigationControllerViewContent section h3 {
Expand Down

0 comments on commit 23dc6ac

Please sign in to comment.