File tree Expand file tree Collapse file tree 3 files changed +23
-10
lines changed Expand file tree Collapse file tree 3 files changed +23
-10
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import mainLogo from '../images/logo_big.png';
7
7
import datePicker from '../images/examples/datepicker.png' ;
8
8
import actionSheet from '../images/examples/actionSheet.png' ;
9
9
import rtl from '../images/examples/rtl.png' ;
10
+ import accessibility from '../images/examples/accessibility.gif' ;
10
11
11
12
const IndexPage = props => {
12
13
return (
@@ -125,7 +126,7 @@ class MyScreen extends Component {
125
126
126
127
const NativeSection = ( ) => {
127
128
return (
128
- < div className = "native -section" >
129
+ < div className = "components -section" >
129
130
< h2 > Over than 60 Beautiful Components</ h2 >
130
131
< p >
131
132
Basic components like < b > Button</ b > , < b > Avatar</ b > and < b > Card</ b > and more sophisticated ones like < b > Hints</ b >
@@ -148,9 +149,10 @@ const OthersSection = () => {
148
149
< div className = "support-section" >
149
150
< div >
150
151
< h2 > RTL and Accessibility in Mind</ h2 >
151
- < p > We provide full out-of-the-box support to RTL and Accessibility</ p >
152
+ < p > We provide a full, out-of-the-box support to RTL and Accessibility</ p >
152
153
</ div >
153
154
< div >
155
+ < img src = { accessibility } height = "500" />
154
156
< img src = { rtl } height = "500" />
155
157
</ div >
156
158
</ div >
Original file line number Diff line number Diff line change 72
72
}
73
73
}
74
74
75
- .native -section {
75
+ .components -section {
76
76
padding : 40px ;
77
77
text-align : center ;
78
-
78
+ background-color : $dark80 ;
79
+ margin-top : 20px ;
80
+
79
81
> .image-examples {
80
82
display : flex ;
81
83
justify-content : space-evenly ;
82
-
84
+
83
85
img {
84
86
height : 500px ;
85
87
}
86
88
}
87
89
}
88
-
90
+
89
91
.support-section {
90
92
display : flex ;
91
- padding : 40px ;
92
- background : $dark20 ;
93
+ flex-direction : column ;
94
+ align-items : center ;
95
+ text-align : center ;
96
+ background : $blue10 ;
93
97
color : $white ;
98
+ // width: 60vw;
99
+ // margin: 0 auto;
100
+ margin-top : 20px ;
101
+ padding : 40px ;
94
102
95
103
> div :first-child {
96
- width : 25% ;
104
+ // width: 25%;
97
105
}
98
106
99
107
> div :nth-child (2 ) {
100
- padding-left : 20px ;
108
+
109
+ img {
110
+ margin-right : 20px ;
111
+ }
101
112
}
102
113
}
103
114
You can’t perform that action at this time.
0 commit comments