Adjusts the size of secondary toolbar button

This commit is contained in:
yanas 2016-12-15 15:25:01 -06:00
parent 5e377d3694
commit 7722e14117
1 changed files with 4 additions and 4 deletions

View File

@ -23,13 +23,13 @@ const button = {
* height: number, justifyContent: string, margin: number, width: number}} * height: number, justifyContent: string, margin: number, width: number}}
*/ */
const smallButton = { const smallButton = {
borderRadius: 15, borderRadius: 20,
flex: 0, flex: 0,
flexDirection: 'column', flexDirection: 'column',
height: 30, height: 40,
justifyContent: 'center', justifyContent: 'center',
margin: BoxModel.margin / 2, margin: BoxModel.margin / 2,
width: 30 width: 40
}; };
/** /**
@ -50,7 +50,7 @@ const icon = {
*/ */
const smallIcon = { const smallIcon = {
...icon, ...icon,
fontSize: 16 fontSize: 18
}; };
/** /**