Skip to content

Commit

Permalink
fix visual bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
BoringBoredom committed Feb 29, 2024
1 parent be2d291 commit 3d1ed5a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ export default function Footer({
onClick={() => {
setData((draft) => {
for (const child of draft.forms[currentFormIndex].children) {
child.accessLevel = input;
if (child.accessLevel !== null) {
child.accessLevel = input;
}
}
});
}}
Expand Down
4 changes: 2 additions & 2 deletions src/components/Navigation/Navigation.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
color: #74c0fc;
}
.menu {
border-bottom: 1px solid var(--_app-shell-border-color);
border-bottom: 1px solid var(--app-shell-border-color);
}
.search {
border-top: 1px solid var(--_app-shell-border-color);
border-top: 1px solid var(--app-shell-border-color);
}

0 comments on commit 3d1ed5a

Please sign in to comment.