Skip to content

Commit

Permalink
button's size leap prevented
Browse files Browse the repository at this point in the history
  • Loading branch information
denys-holub committed May 22, 2023
1 parent 70d016e commit 5dc1694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/src/layout/AppBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const AppBar = () => {
to={item.link}
>
{({ isActive }) => (
<Button variant={isActive ? "contained" : "text"} sx={{ color: "white" }} fullWidth>{item.title}</Button>
<Button variant={isActive ? "contained" : "outlined"} sx={{ color: "white" }} style={{ border: 0 }} fullWidth>{item.title}</Button>
)}
</NavLink>
));
Expand Down

0 comments on commit 5dc1694

Please sign in to comment.