2018-02-08 14:08:50 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
2019-04-17 17:01:03 +00:00
|
|
|
|
2019-03-29 19:36:07 +00:00
|
|
|
import sharedStyles from '../Styles';
|
2017-12-08 19:13:21 +00:00
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
container: {
|
2019-12-04 16:39:53 +00:00
|
|
|
flex: 1
|
2017-12-08 19:13:21 +00:00
|
|
|
},
|
|
|
|
safeAreaView: {
|
|
|
|
flex: 1
|
|
|
|
},
|
2018-01-17 16:42:30 +00:00
|
|
|
readOnly: {
|
2018-12-12 15:15:10 +00:00
|
|
|
justifyContent: 'flex-end',
|
|
|
|
alignItems: 'center',
|
|
|
|
marginVertical: 15
|
2018-05-24 20:17:45 +00:00
|
|
|
},
|
2022-10-21 18:27:55 +00:00
|
|
|
reactionSearchContainer: {
|
|
|
|
marginHorizontal: 12,
|
|
|
|
marginBottom: 8
|
|
|
|
},
|
2018-01-30 19:48:26 +00:00
|
|
|
reactionPickerContainer: {
|
2022-10-21 18:27:55 +00:00
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'column'
|
2018-07-18 20:34:59 +00:00
|
|
|
},
|
2020-03-30 20:19:01 +00:00
|
|
|
bannerContainer: {
|
2020-02-20 19:44:33 +00:00
|
|
|
paddingVertical: 12,
|
|
|
|
paddingHorizontal: 15,
|
2020-05-08 12:57:04 +00:00
|
|
|
flexDirection: 'row',
|
2020-02-20 19:44:33 +00:00
|
|
|
alignItems: 'center'
|
|
|
|
},
|
2020-05-08 12:57:04 +00:00
|
|
|
bannerText: {
|
|
|
|
flex: 1
|
|
|
|
},
|
2020-03-30 20:19:01 +00:00
|
|
|
bannerModalTitle: {
|
2020-02-20 19:44:33 +00:00
|
|
|
fontSize: 16,
|
|
|
|
...sharedStyles.textMedium
|
|
|
|
},
|
|
|
|
modalView: {
|
|
|
|
padding: 20,
|
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
|
|
|
modalScrollView: {
|
|
|
|
maxHeight: 100,
|
|
|
|
marginVertical: 20
|
|
|
|
},
|
|
|
|
modalCloseButton: {
|
|
|
|
alignSelf: 'flex-end'
|
|
|
|
},
|
2018-09-19 14:18:32 +00:00
|
|
|
joinRoomContainer: {
|
|
|
|
justifyContent: 'flex-end',
|
|
|
|
alignItems: 'center',
|
|
|
|
marginVertical: 15
|
|
|
|
},
|
|
|
|
joinRoomButton: {
|
|
|
|
width: 107,
|
|
|
|
height: 44,
|
|
|
|
marginTop: 15,
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
2022-11-10 16:22:02 +00:00
|
|
|
borderRadius: 4
|
2018-09-19 14:18:32 +00:00
|
|
|
},
|
|
|
|
joinRoomText: {
|
|
|
|
fontSize: 14,
|
2019-03-29 19:36:07 +00:00
|
|
|
...sharedStyles.textMedium
|
2018-09-19 14:18:32 +00:00
|
|
|
},
|
|
|
|
previewMode: {
|
|
|
|
fontSize: 16,
|
2019-12-04 16:39:53 +00:00
|
|
|
...sharedStyles.textMedium
|
2022-10-21 18:27:55 +00:00
|
|
|
},
|
|
|
|
searchbarContainer: {
|
|
|
|
height: 56,
|
|
|
|
marginBottom: 8,
|
|
|
|
paddingHorizontal: 12
|
|
|
|
},
|
|
|
|
reactionPickerSearchbar: {
|
|
|
|
paddingHorizontal: 20,
|
|
|
|
minHeight: 48
|
2017-12-08 19:13:21 +00:00
|
|
|
}
|
|
|
|
});
|