Skip to content

Commit

Permalink
Fix Z index for modals
Browse files Browse the repository at this point in the history
  • Loading branch information
hbiede committed Aug 20, 2020
1 parent 3ed5515 commit 50b3bad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"changes": [
"## 1.4.5\n- Adjust student form wording\n- Fix LA adjustments for admins",
"## 1.4.5\n- Adjust student form wording\n- Fix LA adjustments for admins\n- Fix Z index for modals",
"## 1.4.4\n- Add interaction count table",
"## 1.4.3\n- Compress bundled JavaScript to increase load times",
"## 1.4.2\n- Allow multiple students at once\n- Don't reload on form submit\n- Modify NavBar styles\n- Clear student CSE on submit (prevents double submits)",
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type Props = {
};

const MODAL_STYLE = {
overlay: { marginTop: 50, zIndex: 2 },
overlay: { marginTop: 50, zIndex: 10 },
};

const NAVBAR_ID = 'laNavBar';
Expand Down

0 comments on commit 50b3bad

Please sign in to comment.