Skip to content

Commit

Permalink
mobile stretch bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Taxato committed Mar 26, 2024
1 parent 59e765a commit b036f73
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/components/Icon.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
export default function Icon({ name, children }) {
return (
<div className="flex flex-col items-center gap-1">
<img
src={`imgs/${name}`}
className="h-10 w-fit rounded-lg sm:h-16"
/>
<img src={`imgs/${name}`} className="h-10 rounded-lg sm:h-16" />
{children}
</div>
);
Expand Down

0 comments on commit b036f73

Please sign in to comment.