Skip to content

Commit

Permalink
add help button
Browse files Browse the repository at this point in the history
  • Loading branch information
marc101101 committed Mar 19, 2024
1 parent 65b5a4a commit ee54d43
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions frontend/src/components/routers/sidebar/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import { transitionDuration } from "../../../config";
import { GrGroup } from "react-icons/gr";
import { Button } from "@mui/material";
import { SimpleDialog } from "../../base/dialog";
import { MdSupportAgent } from "react-icons/md";

const BackgroundContainer = styled(StyleableFlexContainer)`
height: 100%;
Expand Down Expand Up @@ -195,11 +196,27 @@ export const Sidebar = () => {
)}
</SidebarMenu>
<div style={{ bottom: "8rem", position: "absolute", width: "90%" }}>
<a href="mailto:[email protected]">
<Button
variant="outlined"
style={{
color: "white",
margin: "1rem",
borderColor: "white",
fontSize: "1rem",
width: "100%",
}}
startIcon={<MdSupportAgent />}
>
Need help?
</Button>
</a>
<Button
variant="outlined"
style={{
color: "#3fb28f",
margin: "1rem",
marginTop: "0",
borderColor: "#3fb28f",
fontSize: "1rem",
width: "100%",
Expand Down

0 comments on commit ee54d43

Please sign in to comment.