Skip to content

Commit

Permalink
Fix observer bug
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelLyra8 authored and marcus-oscarsson committed Oct 10, 2023
1 parent b845371 commit 0e458cf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ui/src/components/MXNavbar/MXNavbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,7 @@
font-style: italic;
font-size: medium;
}

.nav-container {
z-index: 9999;
}
2 changes: 1 addition & 1 deletion ui/src/components/MXNavbar/MXNavbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class MXNavbar extends React.Component {

return (
<Navbar
className="pt-1 pb-1"
className="pt-1 pb-1 nav-container"
bg="dark"
variant="dark"
collapseOnSelect
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/Main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Main extends React.Component {
position: 'fixed',
padding: 0,
margin: 0,
top: 50,
top: 0,
left: 0,
width: '100vw',
height: '100vh',
Expand Down

0 comments on commit 0e458cf

Please sign in to comment.