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> </Helmet>
<header className={styles.header}> <header className={styles.header}>
<div className={styles.logo} /> <div className={styles.logo} />
<div className={styles.siteNameWrapper}> <div>
<h1 className={styles.siteName}> <h1 className={styles.siteName}>
<Link to="/">{config.APP.title}</Link> <Link to="/">{config.APP.title}</Link>
</h1> </h1>

View File

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

View File

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

View File

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

View File

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