From fe06b2d45cd0dbd5a7103830f26bee6fe5fd8f65 Mon Sep 17 00:00:00 2001 From: pikiou Date: Wed, 8 Dec 2021 11:23:46 +0100 Subject: [PATCH] Rename non-camel-cased css classes --- src/components/JavGameList/styles.module.scss | 2 +- src/components/VolunteerInfo/styles.module.scss | 2 +- .../__tests__/__snapshots__/VolunteerList.tsx.snap | 2 +- src/components/VolunteerList/index.tsx | 2 +- src/components/VolunteerList/styles.module.scss | 2 +- src/components/VolunteerSet/styles.module.scss | 2 +- src/components/WishAdd/styles.module.scss | 2 +- src/pages/NotFound/__tests__/__snapshots__/NotFound.tsx.snap | 2 +- src/pages/NotFound/index.tsx | 2 +- src/pages/NotFound/styles.module.scss | 2 +- src/pages/VolunteerPage/VolunteerPage.tsx | 2 +- src/pages/VolunteerPage/styles.module.scss | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/components/JavGameList/styles.module.scss b/src/components/JavGameList/styles.module.scss index e03c513..7ebaf64 100644 --- a/src/components/JavGameList/styles.module.scss +++ b/src/components/JavGameList/styles.module.scss @@ -1,6 +1,6 @@ @import "../../theme/variables"; -.jav-game-list { +.JavGameList { color: $color-white; ul { diff --git a/src/components/VolunteerInfo/styles.module.scss b/src/components/VolunteerInfo/styles.module.scss index f2c3c96..c28514e 100755 --- a/src/components/VolunteerInfo/styles.module.scss +++ b/src/components/VolunteerInfo/styles.module.scss @@ -1,4 +1,4 @@ -.volunteer-card { +.VolunteerCard { ul { padding-left: 17px; } diff --git a/src/components/VolunteerList/__tests__/__snapshots__/VolunteerList.tsx.snap b/src/components/VolunteerList/__tests__/__snapshots__/VolunteerList.tsx.snap index 4041e2c..1235e66 100644 --- a/src/components/VolunteerList/__tests__/__snapshots__/VolunteerList.tsx.snap +++ b/src/components/VolunteerList/__tests__/__snapshots__/VolunteerList.tsx.snap @@ -2,7 +2,7 @@ exports[` renders 1`] = `

Volunteer List diff --git a/src/components/VolunteerList/index.tsx b/src/components/VolunteerList/index.tsx index 1b5ec31..5b6f414 100755 --- a/src/components/VolunteerList/index.tsx +++ b/src/components/VolunteerList/index.tsx @@ -9,7 +9,7 @@ interface Props { } const VolunteerList = ({ items }: Props) => ( -
+

Volunteer List

    {items.map(({ id, lastname, firstname }) => ( diff --git a/src/components/VolunteerList/styles.module.scss b/src/components/VolunteerList/styles.module.scss index 7fbac1c..6275f28 100755 --- a/src/components/VolunteerList/styles.module.scss +++ b/src/components/VolunteerList/styles.module.scss @@ -1,6 +1,6 @@ @import "../../theme/variables"; -.user-list { +.VolunteerList { color: $color-white; ul { diff --git a/src/components/VolunteerSet/styles.module.scss b/src/components/VolunteerSet/styles.module.scss index e03c513..6275f28 100644 --- a/src/components/VolunteerSet/styles.module.scss +++ b/src/components/VolunteerSet/styles.module.scss @@ -1,6 +1,6 @@ @import "../../theme/variables"; -.jav-game-list { +.VolunteerList { color: $color-white; ul { diff --git a/src/components/WishAdd/styles.module.scss b/src/components/WishAdd/styles.module.scss index e03c513..9543121 100644 --- a/src/components/WishAdd/styles.module.scss +++ b/src/components/WishAdd/styles.module.scss @@ -1,6 +1,6 @@ @import "../../theme/variables"; -.jav-game-list { +.WishList { color: $color-white; ul { diff --git a/src/pages/NotFound/__tests__/__snapshots__/NotFound.tsx.snap b/src/pages/NotFound/__tests__/__snapshots__/NotFound.tsx.snap index 7cf9370..e0c5951 100644 --- a/src/pages/NotFound/__tests__/__snapshots__/NotFound.tsx.snap +++ b/src/pages/NotFound/__tests__/__snapshots__/NotFound.tsx.snap @@ -2,7 +2,7 @@ exports[` renders 1`] = `

    Oops, Page was not found! diff --git a/src/pages/NotFound/index.tsx b/src/pages/NotFound/index.tsx index 73b09e3..70ce81b 100755 --- a/src/pages/NotFound/index.tsx +++ b/src/pages/NotFound/index.tsx @@ -13,7 +13,7 @@ const NotFound = ({ staticContext }: Props) => { if (staticContext) staticContext.statusCode = 404 return ( -

    +

    Oops, Page was not found!

    diff --git a/src/pages/NotFound/styles.module.scss b/src/pages/NotFound/styles.module.scss index 6eba38d..d850c6c 100755 --- a/src/pages/NotFound/styles.module.scss +++ b/src/pages/NotFound/styles.module.scss @@ -1,3 +1,3 @@ -.not-found { +.NotFound { padding: 0 15px; } diff --git a/src/pages/VolunteerPage/VolunteerPage.tsx b/src/pages/VolunteerPage/VolunteerPage.tsx index a700d06..d40a438 100755 --- a/src/pages/VolunteerPage/VolunteerPage.tsx +++ b/src/pages/VolunteerPage/VolunteerPage.tsx @@ -37,7 +37,7 @@ const VolunteerPage = ({ match }: Props): JSX.Element => { } return ( -
    +
    {renderInfo()}
    diff --git a/src/pages/VolunteerPage/styles.module.scss b/src/pages/VolunteerPage/styles.module.scss index a1fd3e7..b95a81a 100755 --- a/src/pages/VolunteerPage/styles.module.scss +++ b/src/pages/VolunteerPage/styles.module.scss @@ -1,3 +1,3 @@ -.volunteer { +.VolunteerPage { padding: 0 15px; }