Skip to content

Commit

Permalink
fix: search box icons with custom browser text size (#1916)
Browse files Browse the repository at this point in the history
  • Loading branch information
jayschwa authored Apr 4, 2022
1 parent dbe830b commit e77afcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/files/explore-form/FilesExploreForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class FilesExploreForm extends React.Component {
onClick={this.onInspect}
bg='bg-teal'
className='ExploreFormButton button-reset pv1 ph2 ba f7 fw4 white overflow-hidden tc' >
<StrokeIpld style={{ height: 24 }} className='dib fill-current-color v-mid' />
<StrokeIpld style={{ height: '2em' }} className='dib fill-current-color v-mid' />
<span className='ml2'>{t('app:actions.inspect')}</span>
</Button>
<Button
Expand All @@ -104,7 +104,7 @@ class FilesExploreForm extends React.Component {
title={t('app:actions.browse')}
onClick={this.onBrowse}
className='ExploreFormButton button-reset pv1 ph2 ba f7 fw4 white bg-gray overflow-hidden tc' >
<StrokeFolder style={{ height: 24 }} className='dib fill-current-color v-mid' />
<StrokeFolder style={{ height: '2em' }} className='dib fill-current-color v-mid' />
<span className='ml2'>{t('app:actions.browse')}</span>
</Button>
</div>
Expand Down

0 comments on commit e77afcb

Please sign in to comment.