Skip to content

Commit

Permalink
Match buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
imnasnainaec committed Feb 22, 2024
1 parent 9437367 commit 757f9f8
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ArrowForwardIos, HelpOutline } from "@mui/icons-material";
import { Button, Grid, IconButton, Typography } from "@mui/material";
import { Grid, IconButton, Typography } from "@mui/material";
import { ReactElement } from "react";
import { Droppable } from "react-beautiful-dnd";

Expand Down Expand Up @@ -33,18 +33,17 @@ export default function SidebarDrop(): ReactElement {
>
<Grid container justifyContent="space-between">
<IconButton
onClick={() => dispatch(setSidebar())}
id="sidebar-close"
size="large"
onClick={() => dispatch(setSidebar())}
>
<ArrowForwardIos />
</IconButton>
<Button
id="merge-senses-help"
<IconButton
id="sidebar-help"
onClick={() => openUserGuide("goals.html#merge-a-sense")}
>
<HelpOutline />
</Button>
</IconButton>
</Grid>
<Typography variant="h5">{vernacular}</Typography>
{sidebar.mergeSenses.map((ms: MergeTreeSense, i: number) => (
Expand Down

0 comments on commit 757f9f8

Please sign in to comment.