Skip to content

Commit

Permalink
refactor: ♻️ img に width を指定するように修正
Browse files Browse the repository at this point in the history
  • Loading branch information
dino3616 committed Jun 28, 2023
1 parent d64c0d3 commit 7783714
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const Footer = ({ className, ...props }: FooterProps): ReactNode => (
<div className="flex flex-col gap-8">
<div className="flex flex-col gap-4">
<Link href="/" className="flex items-center gap-3">
<Image src={BrandShioImage} alt="An image of brand icon for shio." className="h-8 w-8 rounded-full" />
<Image src={BrandShioImage} alt="An image of brand icon for shio." width={32} className="h-8 w-8 rounded-full" />
<p className="text-2xl font-bold text-black hover:opacity-70 dark:text-white">
<span className="text-purple-11">shio</span>.studio
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const Header = ({ className, ...props }: HeaderProps): ReactNode => (
<header className={cn('flex w-full items-center justify-between p-3 tablet:p-6', className)} {...props}>
<nav aria-label="main navigation" className="flex items-center gap-6 laptop:gap-12">
<Link href="/" className="flex items-center gap-3">
<Image src={BrandShioImage} alt="An image of brand icon for shio." className="h-8 w-8 rounded-full" />
<Image src={BrandShioImage} alt="An image of brand icon for shio." width={32} className="h-8 w-8 rounded-full" />
<p className="hidden text-2xl font-bold text-black hover:opacity-70 dark:text-white tablet:block">
<span className="text-purple-11">shio</span>.studio
</p>
Expand Down

1 comment on commit 7783714

@vercel
Copy link

@vercel vercel bot commented on 7783714 Jun 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.