Skip to content

Commit

Permalink
Style update on bottom nav and top header
Browse files Browse the repository at this point in the history
  • Loading branch information
gkatrakazas committed Mar 31, 2024
1 parent f9f0ccc commit 1906d71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/BottomNav.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const BottomNav = ({ isOpen, toggle }) => {
};

return (
<div className={`fixed bottom-0 left-0 right-0 bg-white flex justify-around p-4 z-50 max480:flex hidden shadow-2xl`}>
<div className={`fixed bottom-0 left-0 right-0 bg-white flex justify-around p-4 z-50 max480:flex hidden shadow-2xl rounded-t-lg`}>
{navItems.map(item => (
<div
key={item.path}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const Layout = ({ children, isPermissionGranted, tokenSentInSession }) => {

{/* Header */}
<header
className={`${isOpen ? 'hidden' : 'z-50 fixed top-0 left-0 w-full bg-custom-blue text-white flex items-center justify-between p-4 shadow-md sm:hidden'}`}
className={`${isOpen ? 'hidden' : 'z-50 fixed top-0 left-0 w-full bg-custom-blue text-white flex items-center justify-between p-4 shadow-md sm:hidden rounded-b-lg'}`}
>
<div className="flex items-center">
<img
Expand Down

0 comments on commit 1906d71

Please sign in to comment.