Skip to content

Commit

Permalink
chore: fix image issue, added padding
Browse files Browse the repository at this point in the history
  • Loading branch information
vwh committed Sep 25, 2024
1 parent 70070f1 commit 1db6089
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const Navbar: React.FC = () => {
className="hidden items-center gap-2 text-xl font-bold hover:animate-pulse md:flex"
>
<img
src="/logo.webp"
src="./logo.webp"
title="Icons editor logo"
className="h-10 w-auto"
alt="Logo"
Expand Down
2 changes: 1 addition & 1 deletion src/components/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function Sidebar() {
const [tapName, setTapName] = useState<"icon" | "background">("icon");

return (
<aside className="w-full space-y-3 overflow-y-auto border-b-[3px] border-r-2 px-1 py-2 md:w-[500px] md:border-b-0">
<aside className="w-full space-y-3 overflow-y-auto border-b-[3px] border-r-2 px-2 py-2 md:w-[500px] md:border-b-0">
<div className="flex">
<Button
className="w-full rounded-none rounded-bl-lg rounded-tl-lg border-r-2"
Expand Down

0 comments on commit 1db6089

Please sign in to comment.