diff --git a/src/components/CurrentHourIndicator/CurrentHourIndicator.module.css b/src/components/CurrentHourIndicator/CurrentHourIndicator.module.css deleted file mode 100644 index d2c250035a..0000000000 --- a/src/components/CurrentHourIndicator/CurrentHourIndicator.module.css +++ /dev/null @@ -1,19 +0,0 @@ -.round { - background-color: red; - border-radius: 100%; - width: 15px; - height: 15px; -} -.line { - width: 100%; - height: 1px; - background-color: red; - margin: auto; -} -.container { - position: relative; - display: flex; - flex-direction: row; - top: -8px; - left: -9px; -} diff --git a/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx b/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx index 98e02bbf5f..7de292988c 100644 --- a/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx +++ b/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import styles from './CurrentHourIndicator.module.css'; +import styles from 'src/style/app.module.css'; /** * A component that displays an indicator for the current hour. @@ -8,9 +8,12 @@ import styles from './CurrentHourIndicator.module.css'; */ const CurrentHourIndicator = (): JSX.Element => { return ( -