diff --git a/src/components/DashboardContainer/DashboardContainer.module.css b/src/components/DashboardContainer/DashboardContainer.module.css deleted file mode 100644 index 7e6e833..0000000 --- a/src/components/DashboardContainer/DashboardContainer.module.css +++ /dev/null @@ -1,11 +0,0 @@ -.item { - border-bottom: none; -} - -.label { - font-weight: 500; -} - -.content { - padding: 0rem; -} diff --git a/src/components/DashboardContainer/DashboardContainer.tsx b/src/components/DashboardContainer/DashboardContainer.tsx index c9579aa..9ba486f 100644 --- a/src/components/DashboardContainer/DashboardContainer.tsx +++ b/src/components/DashboardContainer/DashboardContainer.tsx @@ -1,7 +1,6 @@ -import { Accordion, Box, Group, Title } from "@mantine/core"; +import { Box, Group, Title } from "@mantine/core"; import { LatestReading } from "../LatestReading"; import { ColorSchemeSwitcher } from "../ColorSchemeSwitcher"; -import classes from "./DashboardContainer.module.css"; import { ReadingsHistoryContainer } from "../ReadingsHistoryContainer"; export const DashboardContainer = (props: { isMobile: boolean }) => { @@ -13,29 +12,16 @@ export const DashboardContainer = (props: { isMobile: boolean }) => { - - - Current conditions - - - - - - History - - - - - + + Current conditions + + + + + History + + + ); };