From 6d0134cb636a78b479c6d724a11bdddceb7cab20 Mon Sep 17 00:00:00 2001 From: memeriau Date: Mon, 24 Jan 2022 14:27:06 +0100 Subject: [PATCH] fix linter on ui updates --- src/app/index.tsx | 2 +- src/app/styles.module.scss | 3 --- src/components/Navigation/styles.module.scss | 6 +++--- src/components/Teams/TeamItem.tsx | 2 +- src/components/Teams/styles.module.scss | 3 --- 5 files changed, 5 insertions(+), 11 deletions(-) diff --git a/src/app/index.tsx b/src/app/index.tsx index aa4495e..79deb2f 100755 --- a/src/app/index.tsx +++ b/src/app/index.tsx @@ -24,7 +24,7 @@ const App = ({ route }: Route): JSX.Element => (
-
+

{config.APP.title}

diff --git a/src/app/styles.module.scss b/src/app/styles.module.scss index 494b962..7eed4e7 100755 --- a/src/app/styles.module.scss +++ b/src/app/styles.module.scss @@ -32,9 +32,6 @@ } } -.siteNameWrapper { -} - .siteName { margin: 0; padding: 0; diff --git a/src/components/Navigation/styles.module.scss b/src/components/Navigation/styles.module.scss index f723e53..108db20 100644 --- a/src/components/Navigation/styles.module.scss +++ b/src/components/Navigation/styles.module.scss @@ -15,9 +15,9 @@ font-weight: bold; color: $color-black; text-decoration: none; + } - &:hover { - color: $color-grey-dark; - } + a:hover { + color: $color-grey-dark; } } diff --git a/src/components/Teams/TeamItem.tsx b/src/components/Teams/TeamItem.tsx index 7536451..a13d4f1 100644 --- a/src/components/Teams/TeamItem.tsx +++ b/src/components/Teams/TeamItem.tsx @@ -11,7 +11,7 @@ const TeamItem: React.FC = ({ team }): JSX.Element => { return (
  • {name}
    -
    {description}
    +
    {description}
  • ) } diff --git a/src/components/Teams/styles.module.scss b/src/components/Teams/styles.module.scss index 00c642e..da34aec 100755 --- a/src/components/Teams/styles.module.scss +++ b/src/components/Teams/styles.module.scss @@ -13,6 +13,3 @@ .teamName { font-weight: bold; } - -.teamDescription { -}