Skip to content

Commit

Permalink
login and register button mobile and desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
AldemirLucas committed Jan 19, 2024
1 parent 6db3f70 commit 73403b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions next/components/molecules/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ function MenuDrawer({ isOpen, onClose, links }) {
<></>
:
<Stack display={isMobileMod() ? "flex" : "none"} marginTop="auto" gap="16px">
{/* <RoundedButton
<RoundedButton
backgroundColor="#FFF"
border="2px solid #42B0FF"
color="#42B0FF"
Expand All @@ -152,7 +152,7 @@ function MenuDrawer({ isOpen, onClose, links }) {
onClick={() => window.open("/user/register", "_self")}
>
Cadastrar
</RoundedButton> */}
</RoundedButton>
</Stack>
}
</DrawerContent>
Expand Down Expand Up @@ -783,14 +783,14 @@ function DesktopLinks({ links, position = false, path, userTemplate = false }) {
</HStack>
) : (
<>
{/* <Link fontSize="15px" fontFamily="Ubuntu" fontWeight="400" letterSpacing="0.3px" href="/user/login">
<Link fontSize="15px" fontFamily="Ubuntu" fontWeight="400" letterSpacing="0.3px" href="/user/login">
Entrar
</Link>
<Link _hover={{ opacity:"none" }} href="/user/register">
<RoundedButton height="35px" fontSize="15px" minWidth="110px" borderRadius="30px">
Cadastrar
</RoundedButton>
</Link> */}
</Link>
</>
)}
</HStack>
Expand Down

0 comments on commit 73403b9

Please sign in to comment.