fix linter on ui updates

This commit is contained in:
memeriau 2022-01-24 14:27:06 +01:00
parent 4e64cb8469
commit 6d0134cb63
5 changed files with 5 additions and 11 deletions

View File

@ -24,7 +24,7 @@ const App = ({ route }: Route): JSX.Element => (
</Helmet>
<header className={styles.header}>
<div className={styles.logo} />
<div className={styles.siteNameWrapper}>
<div>
<h1 className={styles.siteName}>
<Link to="/">{config.APP.title}</Link>
</h1>

View File

@ -32,9 +32,6 @@
}
}
.siteNameWrapper {
}
.siteName {
margin: 0;
padding: 0;

View File

@ -15,9 +15,9 @@
font-weight: bold;
color: $color-black;
text-decoration: none;
}
&:hover {
color: $color-grey-dark;
}
a:hover {
color: $color-grey-dark;
}
}

View File

@ -11,7 +11,7 @@ const TeamItem: React.FC<Props> = ({ team }): JSX.Element => {
return (
<li className={styles.teamItem}>
<div className={styles.teamName}>{name}</div>
<div className={styles.teamDescription}>{description}</div>
<div>{description}</div>
</li>
)
}

View File

@ -13,6 +13,3 @@
.teamName {
font-weight: bold;
}
.teamDescription {
}