diff --git a/webapp/src/components/SideBar.tsx b/webapp/src/components/SideBar.tsx index 437eaa6c429f909237b98cb1b5090f334ff75fe5..0ad11f2ad94f13d4048eb42d38bfb4f515c7b0c3 100644 --- a/webapp/src/components/SideBar.tsx +++ b/webapp/src/components/SideBar.tsx @@ -1,5 +1,5 @@ import React, { useState } from 'react'; -import { sidebarContext } from "../helpers/SidebarProvider"; +// import { sidebarContext } from "../helpers/SidebarProvider"; import { AiOutlineClose, AiOutlinePlus } from 'react-icons/ai'; diff --git a/webapp/src/components/global/Banner.tsx b/webapp/src/components/global/Banner.tsx index 2aed408bd655e92b44337e68da14379a00069edb..e74f2f9df058c36e755d5dae31d15e959ee294fe 100644 --- a/webapp/src/components/global/Banner.tsx +++ b/webapp/src/components/global/Banner.tsx @@ -1,5 +1,5 @@ import React, { ReactElement } from "react"; -import { Container, Row, Col } from "react-bootstrap"; +import { Container, Row } from "react-bootstrap"; import SectionDataLogo from "../../images/home_data_icon.svg"; diff --git a/webapp/src/components/global/ExternalPageNavBar.tsx b/webapp/src/components/global/ExternalPageNavBar.tsx index 4b0608ec612967500b32166d0fd27dfa81ff8db7..943babbae3ecd662c30b3b63b9fe14219a24ac73 100644 --- a/webapp/src/components/global/ExternalPageNavBar.tsx +++ b/webapp/src/components/global/ExternalPageNavBar.tsx @@ -1,5 +1,5 @@ import React, { ReactElement } from "react"; -import { Container, Row, Col } from "react-bootstrap"; +import { Container, Row } from "react-bootstrap"; import GeantLogo from "../../images/geant_logo_f2020_new.svg"; /** diff --git a/webapp/src/components/global/SectionLink.tsx b/webapp/src/components/global/SectionLink.tsx index 0a6d41815c088a8c0977f8fe3b3f952a5489f3af..764b94e12b68a658224dcdc5652662ecbff822ef 100644 --- a/webapp/src/components/global/SectionLink.tsx +++ b/webapp/src/components/global/SectionLink.tsx @@ -1,6 +1,4 @@ import React, { ReactElement } from "react"; -import { Container, Row, Col } from "react-bootstrap"; - import SectionDataLogo from "../../images/home_reports_icon.svg"; interface inputProps { @@ -10,13 +8,13 @@ interface inputProps { function SectionLink({ section }: inputProps): ReactElement { return ( <div className={'bold-caps-17pt section-container'}> - <div style={{ display: "flex", alignSelf: "right", lineHeight: "1.5rem", marginTop: "0.5rem"}}> + <div style={{ display: "flex", alignSelf: "right", lineHeight: "1.5rem", marginTop: "0.5rem" }}> <span> Compendium <br /> <span style={{ float: "right" }}>{section}</span> </span> - - + + </div> <img src={SectionDataLogo} style={{ maxWidth: "4rem" }} /> diff --git a/webapp/src/pages/CompendiumData.tsx b/webapp/src/pages/CompendiumData.tsx index 99bc46f677504e3d1eb55c6e2e77eed9ddd25377..8af88698ee0e9a0406d52ac70e9de5ac63909980 100644 --- a/webapp/src/pages/CompendiumData.tsx +++ b/webapp/src/pages/CompendiumData.tsx @@ -1,5 +1,5 @@ import React, { ReactElement } from "react"; -import { Container, Row, Col } from "react-bootstrap"; +import { Container, Row } from "react-bootstrap"; import CollapsibleBox from "../components/CollapsibleBox"; import PageHeader from "../components/global/PageHeader" import SectionLink from "../components/global/SectionLink";