mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-09-11 13:56:29 +02:00
Fixes lint style errors
This commit is contained in:
@@ -5,10 +5,10 @@
|
||||
|
||||
ul {
|
||||
padding-left: 17px;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
li {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
|
@@ -5,10 +5,10 @@
|
||||
|
||||
ul {
|
||||
padding-left: 17px;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
li {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
exports[`<Loading /> renders 1`] = `
|
||||
<div
|
||||
class="Loading"
|
||||
class="loading"
|
||||
>
|
||||
<p>
|
||||
Loading...
|
||||
|
@@ -1,7 +1,7 @@
|
||||
import styles from "./styles.module.scss"
|
||||
|
||||
const Loading = (): JSX.Element => (
|
||||
<div className={styles.Loading}>
|
||||
<div className={styles.loading}>
|
||||
<p>Loading...</p>
|
||||
</div>
|
||||
)
|
||||
|
@@ -1,3 +1,3 @@
|
||||
.Loading {
|
||||
.loading {
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
@@ -1,9 +1,9 @@
|
||||
.membre-card {
|
||||
ul {
|
||||
padding-left: 17px;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
li {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
}
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
exports[`<MembreList /> renders 1`] = `
|
||||
<div
|
||||
class="MembreList"
|
||||
class="user-list"
|
||||
>
|
||||
<h4>
|
||||
Membre List
|
||||
|
@@ -9,7 +9,7 @@ interface Props {
|
||||
}
|
||||
|
||||
const MembreList = ({ items }: Props) => (
|
||||
<div className={styles.MembreList}>
|
||||
<div className={styles["user-list"]}>
|
||||
<h4>Membre List</h4>
|
||||
<ul>
|
||||
{items.map(({ id, nom, prenom }) => (
|
||||
|
@@ -1,14 +1,14 @@
|
||||
@import "../../theme/variables";
|
||||
|
||||
.UserList {
|
||||
.user-list {
|
||||
color: $color-white;
|
||||
|
||||
ul {
|
||||
padding-left: 17px;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
li {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
|
@@ -5,10 +5,10 @@
|
||||
|
||||
ul {
|
||||
padding-left: 17px;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
li {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
|
Reference in New Issue
Block a user