update logo
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
c1c8f658cd
commit
0430d15fd2
|
|
@ -308,17 +308,21 @@ const SidebarContent = ({
|
||||||
<div className="flex-1 overflow-y-auto">
|
<div className="flex-1 overflow-y-auto">
|
||||||
<div className="flex flex-col space-y-6">
|
<div className="flex flex-col space-y-6">
|
||||||
{/* HEADER */}
|
{/* HEADER */}
|
||||||
<div className="flex items-center justify-between px-4 py-6">
|
<div className="flex items-center justify-center px-4 py-6 transition-all duration-300">
|
||||||
<Link href="/" className="flex items-center space-x-3">
|
<Link href="/" className="flex items-center justify-center w-full">
|
||||||
<img
|
<img
|
||||||
src="/image/qudo1.png"
|
src="/image/qudo1.png"
|
||||||
className="w-10 h-10 rounded-lg shadow-sm"
|
alt="Qudo Logo"
|
||||||
|
className={`
|
||||||
|
object-contain transition-all duration-300
|
||||||
|
${open ? "w-44 h-44" : "w-12 h-12"}
|
||||||
|
`}
|
||||||
/>
|
/>
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
{open && (
|
{open && (
|
||||||
<button
|
<button
|
||||||
className="p-2 rounded-lg hover:bg-slate-100"
|
className="ml-3 p-2 rounded-lg hover:bg-slate-100 transition"
|
||||||
onClick={() => updateSidebarData(false)}
|
onClick={() => updateSidebarData(false)}
|
||||||
>
|
>
|
||||||
<Icon icon="heroicons:chevron-left" className="w-5 h-5" />
|
<Icon icon="heroicons:chevron-left" className="w-5 h-5" />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue