Rename non-camel-cased css classes

This commit is contained in:
pikiou
2021-12-08 11:23:46 +01:00
parent 6bd3a9595f
commit fe06b2d45c
12 changed files with 12 additions and 12 deletions

View File

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

View File

@@ -9,7 +9,7 @@ interface Props {
}
const VolunteerList = ({ items }: Props) => (
<div className={styles["user-list"]}>
<div className={styles.VolunteerList}>
<h4>Volunteer List</h4>
<ul>
{items.map(({ id, lastname, firstname }) => (

View File

@@ -1,6 +1,6 @@
@import "../../theme/variables";
.user-list {
.VolunteerList {
color: $color-white;
ul {