mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-06-08 08:34:20 +02:00
fix linter on ui updates
This commit is contained in:
parent
4e64cb8469
commit
6d0134cb63
@ -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>
|
||||
|
@ -32,9 +32,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
.siteNameWrapper {
|
||||
}
|
||||
|
||||
.siteName {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
@ -15,9 +15,9 @@
|
||||
font-weight: bold;
|
||||
color: $color-black;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: $color-grey-dark;
|
||||
}
|
||||
a:hover {
|
||||
color: $color-grey-dark;
|
||||
}
|
||||
}
|
||||
|
@ -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>
|
||||
)
|
||||
}
|
||||
|
@ -13,6 +13,3 @@
|
||||
.teamName {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.teamDescription {
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user