forked from GaborWnuk/react-native-instagram-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-styles.js
34 lines (32 loc) · 839 Bytes
/
index-styles.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
* Instagram Embed component for React Native
* https://github.com/GaborWnuk
* @flow
*/
import React, { PureComponent } from 'react';
import { StyleSheet } from 'react-native';
export default StyleSheet.create({
container: {
backgroundColor: 'white',
borderColor: '#cccccc',
borderWidth: 1,
borderRadius: 3,
},
headerContainer: { flexDirection: 'row', margin: 8, alignItems: 'center' },
avatar: {
width: 40,
height: 40,
borderRadius: 20,
borderWidth: 1,
borderColor: '#cccccc',
},
author: { marginLeft: 8, fontWeight: '500' },
titleContainer: { flexDirection: 'row', margin: 8 },
statsContainer: {
flexDirection: 'row',
marginVertical: 6,
alignItems: 'center',
},
statIcon: { width: 16, height: 14 },
statLabel: { fontWeight: '500', marginHorizontal: 8 },
});