Skip to content

Commit

Permalink
fix(icons): svg icons sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
eythaann committed Sep 25, 2024
1 parent 6aeb651 commit 8374fbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/apps/settings/modules/seelenweg/infra.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const SeelenWegSettings = () => {
</SettingsOption>
<SettingsOption>
<div>{t('weg.dock_side')}</div>
<Button.Group>
<Button.Group style={{ width: '120px' }}>
{Object.values(SeelenWegSide).map((side) => (
<Button
key={side}
Expand Down
2 changes: 1 addition & 1 deletion src/apps/shared/components/Icon/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function Icon(props: typesPropsIcon) {
{...rest}
src={`../icons/${iconName}.svg`}
className={cs.icon}
style={{ width: size, height: size, color }}
style={{ height: size, color }}
/>
);
}

0 comments on commit 8374fbe

Please sign in to comment.