Fixes lint style errors

This commit is contained in:
pikiou
2021-11-24 00:08:19 +01:00
parent 3ac9c72a8b
commit 051784a6da
22 changed files with 51 additions and 51 deletions

View File

@@ -5,10 +5,10 @@
ul {
padding-left: 17px;
}
li {
margin-bottom: 0.5em;
}
li {
margin-bottom: 0.5em;
}
a {

View File

@@ -5,10 +5,10 @@
ul {
padding-left: 17px;
}
li {
margin-bottom: 0.5em;
}
li {
margin-bottom: 0.5em;
}
a {

View File

@@ -2,7 +2,7 @@
exports[`<Loading /> renders 1`] = `
<div
class="Loading"
class="loading"
>
<p>
Loading...

View File

@@ -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>
)

View File

@@ -1,3 +1,3 @@
.Loading {
.loading {
padding: 0 15px;
}

View File

@@ -1,9 +1,9 @@
.membre-card {
ul {
padding-left: 17px;
}
li {
margin-bottom: 0.5em;
}
li {
margin-bottom: 0.5em;
}
}

View File

@@ -2,7 +2,7 @@
exports[`<MembreList /> renders 1`] = `
<div
class="MembreList"
class="user-list"
>
<h4>
Membre List

View File

@@ -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 }) => (

View File

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

View File

@@ -5,10 +5,10 @@
ul {
padding-left: 17px;
}
li {
margin-bottom: 0.5em;
}
li {
margin-bottom: 0.5em;
}
a {