Skip to content

Commit

Permalink
chore: changed icon position
Browse files Browse the repository at this point in the history
  • Loading branch information
Tormak9970 committed Dec 19, 2023
1 parent 197faf2 commit be905c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/filters/FilterSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ const FilterSelectElement: VFC<FilterSelectElement> = ({ filterType, focusable,
style={{ display: "flex", flexDirection: "column", padding: "0.5em", height: "60px" }}
>
<div className="entry-label" style={{ display: 'flex', alignItems: 'baseline' }}>
<div style={{ marginRight: '7px' }}>
{createElement(FilterIcons[filterType], { size: '.8em' })}
</div>
<div>
{capitalizeEachWord(filterType)}
</div>
<div style={{ marginLeft: '.8ch', marginRight: '1ch' }}>
{createElement(FilterIcons[filterType], { size: '.8em' })}
</div>
{filterType === 'sd card' && <small style={{ fontSize: "0.5em" }}>{`requires MicroSDeck ${requiredMicroSDeckVer}`}</small>}
</div>
<div className="entry-desc">{FilterDescriptions[filterType]}</div>
Expand Down

0 comments on commit be905c8

Please sign in to comment.