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

@@ -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 {
}