14 lines
219 B
JavaScript
14 lines
219 B
JavaScript
|
// @flow
|
||
|
|
||
|
/**
|
||
|
* The style of toolbar buttons.
|
||
|
*/
|
||
|
export default {
|
||
|
youtubeVideoContainer: {
|
||
|
alignItems: 'center',
|
||
|
flex: 1,
|
||
|
flexDirection: 'column',
|
||
|
justifyContent: 'center'
|
||
|
}
|
||
|
};
|