mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-06-09 17:14:21 +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>
|
</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>
|
||||||
|
@ -32,9 +32,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.siteNameWrapper {
|
|
||||||
}
|
|
||||||
|
|
||||||
.siteName {
|
.siteName {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -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>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -13,6 +13,3 @@
|
|||||||
.teamName {
|
.teamName {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.teamDescription {
|
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user