Skip to content

Commit

Permalink
fix backoffice menu position
Browse files Browse the repository at this point in the history
  • Loading branch information
vicenlu committed Nov 27, 2023
1 parent cce1f37 commit 1c38b2c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/BackOfficeComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,16 @@ function ViewBackOffice(){
<main className="grid w-screen h-full min-h-screen grid-cols-6 lg:bg-backOffice-main">

<nav className="hidden lg:block">
<img src={itImage} alt="img-logo" className="mx-auto mt-5" />
<img src={itImage} alt="img-logo" className="ml-20 mt-5" />
<div className="grid grid-rows-3 my-36">
<button className={`flex justify-start items-center py-2 my-4 ml-12
<button className={`flex justify-start items-center py-2 my-4 ml-20
${boldFont.boldFaqs ? 'font-bold hover:divide-y-8' : 'font-normal'} focus:outline-none`}
onClick={() => handleClickNav('faqs')}>
<div className={`w-2.5 h-2.5 rounded-full mr-2 bg-[#BA007C] ${boldFont.boldFaqs ? '' : 'hidden'}`}></div>
{t("backofficePage.navbarComponent.faqs")}
</button>

<button className={`flex justify-start items-center py-2 my-4 ml-12
<button className={`flex justify-start items-center py-2 my-4 ml-20
${boldFont.boldProjectsComponent ? 'font-bold' : 'font-normal'} focus:outline-none`}
onClick={() => handleClickNav('apps')}>
<div className={`w-2.5 h-2.5 rounded-full mr-2 bg-[#BA007C]
Expand All @@ -68,7 +68,7 @@ function ViewBackOffice(){
{t("backofficePage.navbarComponent.apps")}
</button>

<button className={`flex justify-start items-center py-2 my-4 ml-12
<button className={`flex justify-start items-center py-2 my-4 ml-20
${boldFont.boldUsersComponent ? 'font-bold' : 'font-normal'} focus:outline-none`}
onClick={() => handleClickNav('users')}>
<div className={`w-2.5 h-2.5 rounded-full mr-2 bg-[#BA007C]
Expand Down

0 comments on commit 1c38b2c

Please sign in to comment.