Skip to content

Commit

Permalink
Update some improvement in sidebar for all screen sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
gkatrakazas committed Apr 2, 2024
1 parent a714981 commit 6963020
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const Sidebar = ({ isOpen, toggle }) => {
return (
<div
className={`${isOpen
? 'w-full flex flex-col justify-between fixed h-screen z-30 bg-custom-blue text-white p-4 pb-16 overflow-y-auto'
? 'w-full flex flex-col justify-between fixed h-screen z-30 bg-custom-blue text-white p-4 max480:pb-20 overflow-y-auto'
: 'hidden sm:flex sm:flex-col justify-between sticky top-0 bg-custom-blue w-auto text-white h-screen py-10 px-10 overflow-y-auto'
}`}
Expand Down Expand Up @@ -143,7 +143,7 @@ const Sidebar = ({ isOpen, toggle }) => {
</div>

{/* Powered By */}
<div className="bg-custom-blue text-white text-sm space-x-2 mb-4 p-2 table-footer-group">
<div className="bg-custom-blue text-white text-sm space-x-2 p-2">
<Trans
i18nKey="sidebar.poweredBy"
components={{
Expand Down

0 comments on commit 6963020

Please sign in to comment.