Skip to content

Commit

Permalink
fix: added padding to header buttons so they are easier to tap
Browse files Browse the repository at this point in the history
  • Loading branch information
glouvigny committed Feb 26, 2019
1 parent 2a27a75 commit 4fdb253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/react-native/common/components/Library/Header.js
Expand Up @@ -8,7 +8,7 @@ import { isRTL } from '../../i18n'
const [defaultTextColor, defaultBackColor] = [colors.fakeBlack, colors.white]

const HeaderButton = ({ icon, color, style, ...otherProps }) => {
return <Button icon={icon} large color={color} {...otherProps} />
return <Button icon={icon} large color={color} {...otherProps} padding />
}

export default class Header extends PureComponent {
Expand Down

0 comments on commit 4fdb253

Please sign in to comment.