summaryrefslogtreecommitdiffhomepage
path: root/src/components/Layout.tsx
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-06-20 16:32:08 -0400
committerrealtradam <[email protected]>2024-06-20 16:32:08 -0400
commitc64a71c79e8cb2018a699248582d6793ea31a3f5 (patch)
tree89153f4beaa46e080771215bf960cf37712a8092 /src/components/Layout.tsx
parentcb729eb22b9f81d9f9194a92abb475ed06148e69 (diff)
downloadmalcz.com-c64a71c79e8cb2018a699248582d6793ea31a3f5.tar.gz
malcz.com-c64a71c79e8cb2018a699248582d6793ea31a3f5.zip
make button bottom border black
Diffstat (limited to 'src/components/Layout.tsx')
-rw-r--r--src/components/Layout.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 7ed519d..415e5f8 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -27,7 +27,7 @@ export default function Layout ({userData}: userData)
return (
<>
<div id="page" className="star flex flex-row min-h-screen max-h-screen bg-amber-400 text-stone-950 text-xl bg-star bg-repeat bg-[length:170px_170px]">
- <div onClick={handleSidebarOpen} className={`${sidebarOpen ? 'sidebarOpen' : ''} ${sidebarClosed ? 'sidebarClosed' : ''} ${sidebarInit ? 'sidebarInit' : ''} sidebar-animation flex items-center justify-center md:hidden fixed shadow-xl ml-[17rem] m-4 h-12 w-12 text-stone-50 bg-stone-800 border-b-4 border-stone-950 rounded-[5px] z-[5]`}>
+ <div onClick={handleSidebarOpen} className={`${sidebarOpen ? 'sidebarOpen' : ''} ${sidebarClosed ? 'sidebarClosed' : ''} ${sidebarInit ? 'sidebarInit' : ''} sidebar-animation flex items-center justify-center md:hidden fixed shadow-xl ml-[17rem] m-4 h-12 w-12 text-stone-50 bg-stone-800 border-b-4 border-black rounded-[5px] z-[5]`}>
<div className={`${sidebarClosed || sidebarInit ? '' : 'hidden'} flex items-center justify-center`}>
<i className="fa-solid fa-chevron-right w-6 h-6"></i>
</div>