File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,8 @@ module.exports = {
110110 return this . inputPaddingLeft * 8 ;
111111 } ,
112112
113+ btnLineHeight : ( Platform . OS === 'ios' ) ? 20 : 23 ,
114+
113115 dropdownBg : "#000" ,
114116 dropdownLinkColor : "#414142" ,
115117
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ export default class Button extends NativeBaseComponent {
8383
8484 fontSize : ( this . props . large ) ? this . getTheme ( ) . btnTextSizeLarge : ( this . props . small ) ? this . getTheme ( ) . btnTextSizeSmall : this . getTheme ( ) . btnTextSize ,
8585
86- lineHeight : ( this . props . large ) ? 29 : ( this . props . small ) ? 16 : 20
86+ lineHeight : ( this . props . large ) ? 29 : ( this . props . small ) ? 16 : this . getTheme ( ) . btnLineHeight ,
8787 }
8888
8989 return _ . merge ( mergedStyle , btnType , this . props . textStyle ) ;
You can’t perform that action at this time.
0 commit comments