Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add shadow to navbar (#170) #172

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading