Skip to content

Commit

Permalink
Add shadow to navbar (#170)
Browse files Browse the repository at this point in the history
Co-authored-by: wkim10 <[email protected]>
  • Loading branch information
wkim10 and wkim10 authored Apr 19, 2024
1 parent e9f078b commit 2638552
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/public/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const HomePage = () => {

return (
<main className="flex flex-col">
<div className="relative z-10 flex flex-col content-center items-center gap-y-6 overflow-hidden rounded bg-[#E7DCD0] px-6 py-[80px] shadow-md shadow-gray-500 sm:px-12">
<div className="relative z-10 flex flex-col content-center items-center gap-y-6 overflow-hidden rounded bg-med-tan px-6 py-[80px] shadow-md shadow-gray-500 sm:px-12">
{/* Hero Section and Action Items Buttons */}
<div className="h-28 w-72 self-start">
<Image src={Logo} alt="logo" className="object-contain" />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const Navbar = () => {
}, []);

return (
<nav className="fixed top-0 z-20 flex h-[60px] w-full flex-row items-center justify-between border border-dark-tan bg-med-tan px-[30px] py-3 sm:px-[50px] md:px-[93px]">
<nav className="fixed top-0 z-20 flex h-[60px] w-full flex-row items-center justify-between border border-dark-tan bg-med-tan px-[30px] py-3 shadow-md shadow-gray-400 sm:px-[50px] md:px-[93px]">
<Link href="/public" onClick={() => setDropdownVisible(false)}>
<Image src={logoicon} alt="Legacy Logo" className="w-[200px]" />
</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const _Sidebar = ({ buttons }: ISideBar) => {
const path = usePathname();

return (
<nav className="h-screen w-full overflow-y-auto bg-med-tan pb-32 pt-20">
<nav className="h-screen w-full overflow-y-auto bg-med-tan pb-32 pt-20 shadow-lg shadow-gray-500">
<div className="flex h-full flex-col items-center justify-between">
<Link href="/public/" className="flex justify-center">
<h1 className="h-auto w-full items-center justify-center px-5 duration-150 hover:-translate-y-0.5">
Expand Down

0 comments on commit 2638552

Please sign in to comment.