This repository was archived by the owner on Apr 9, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +26
-6
lines changed
Expand file tree Collapse file tree 1 file changed +26
-6
lines changed Original file line number Diff line number Diff line change @@ -54,20 +54,30 @@ button {
5454}
5555
5656.ReactNavigationControllerView {
57+ display : -webkit-flex;
58+ display : -ms-flexbox;
5759 display : flex;
5860}
5961
6062.ReactNavigationControllerViewContent {
6163 color : white;
64+ display : -webkit-flex;
65+ display : -ms-flexbox;
6266 display : flex;
63- flex-direction : column;
67+ -webkit-flex-direction : column;
68+ -ms-flex-direction : column;
69+ flex-direction : column;
6470}
6571
6672/* HEADER */
6773
6874.ReactNavigationControllerViewContent header {
75+ display : -webkit-flex;
76+ display : -ms-flexbox;
6977 display : flex;
70- justify-content : space-between;
78+ -webkit-justify-content : space-between;
79+ -ms-flex-pack : justify;
80+ justify-content : space-between;
7181 padding : 0.75em ;
7282}
7383
@@ -78,11 +88,21 @@ button {
7888/* CONTENT */
7989
8090.ReactNavigationControllerViewContent section {
81- flex : 1 ;
91+ -webkit-flex : 1 ;
92+ -ms-flex : 1 ;
93+ flex : 1 ;
94+ display : -webkit-flex;
95+ display : -ms-flexbox;
8296 display : flex;
83- flex-direction : column;
84- align-items : center;
85- justify-content : center;
97+ -webkit-flex-direction : column;
98+ -ms-flex-direction : column;
99+ flex-direction : column;
100+ -webkit-align-items : center;
101+ -ms-flex-align : center;
102+ align-items : center;
103+ -webkit-justify-content : center;
104+ -ms-flex-pack : center;
105+ justify-content : center;
86106}
87107
88108.ReactNavigationControllerViewContent section h3 {
You can’t perform that action at this time.
0 commit comments