Skip to content

Commit

Permalink
fix: bug button with Menu Open (Navbar)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorcz committed Aug 28, 2024
1 parent d3bc065 commit e56eed6
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 52 deletions.
2 changes: 1 addition & 1 deletion components/navbar-components/NavBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function NavBar(props) {
<Button
variant="contained"
color="primary"
className={style.fixedButton}
className={menu === true ? style.navBarContainerDeactive : style.fixedButton}
href={projectPageHref}
>
{projectPageLabel}
Expand Down
2 changes: 2 additions & 0 deletions components/projects-components/projectsv2/CubeSats.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import Grid from '@mui/material/Unstable_Grid2';
import React, { useState } from 'react';
import SondasAeroespaciais from 'components/projects-components/projectsv2/SondasAeroespaciais';

export default function CubeSats() {
return (
<>

<SondasAeroespaciais/>
{/* Espaços vazios so pra testar mesmo*/}
<Grid container sx={{ minHeight: '100vh', padding: 2 }}>
<Grid item xs={12} md={12} sx={{ border: 1, borderColor: 'red', padding: 2 }}>
Expand Down
89 changes: 38 additions & 51 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e56eed6

Please sign in to comment.