mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-06-09 17:14:21 +02:00
Rename non-camel-cased css classes
This commit is contained in:
parent
6bd3a9595f
commit
fe06b2d45c
@ -1,6 +1,6 @@
|
|||||||
@import "../../theme/variables";
|
@import "../../theme/variables";
|
||||||
|
|
||||||
.jav-game-list {
|
.JavGameList {
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.volunteer-card {
|
.VolunteerCard {
|
||||||
ul {
|
ul {
|
||||||
padding-left: 17px;
|
padding-left: 17px;
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
exports[`<VolunteerList /> renders 1`] = `
|
exports[`<VolunteerList /> renders 1`] = `
|
||||||
<div
|
<div
|
||||||
class="user-list"
|
class="VolunteerList"
|
||||||
>
|
>
|
||||||
<h4>
|
<h4>
|
||||||
Volunteer List
|
Volunteer List
|
||||||
|
@ -9,7 +9,7 @@ interface Props {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const VolunteerList = ({ items }: Props) => (
|
const VolunteerList = ({ items }: Props) => (
|
||||||
<div className={styles["user-list"]}>
|
<div className={styles.VolunteerList}>
|
||||||
<h4>Volunteer List</h4>
|
<h4>Volunteer List</h4>
|
||||||
<ul>
|
<ul>
|
||||||
{items.map(({ id, lastname, firstname }) => (
|
{items.map(({ id, lastname, firstname }) => (
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
@import "../../theme/variables";
|
@import "../../theme/variables";
|
||||||
|
|
||||||
.user-list {
|
.VolunteerList {
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
@import "../../theme/variables";
|
@import "../../theme/variables";
|
||||||
|
|
||||||
.jav-game-list {
|
.VolunteerList {
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
@import "../../theme/variables";
|
@import "../../theme/variables";
|
||||||
|
|
||||||
.jav-game-list {
|
.WishList {
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
exports[`<NotFound /> renders 1`] = `
|
exports[`<NotFound /> renders 1`] = `
|
||||||
<div
|
<div
|
||||||
class="not-found"
|
class="NotFound"
|
||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
Oops, Page was not found!
|
Oops, Page was not found!
|
||||||
|
@ -13,7 +13,7 @@ const NotFound = ({ staticContext }: Props) => {
|
|||||||
if (staticContext) staticContext.statusCode = 404
|
if (staticContext) staticContext.statusCode = 404
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles["not-found"]}>
|
<div className={styles.NotFound}>
|
||||||
<Helmet title="Oops" />
|
<Helmet title="Oops" />
|
||||||
<p>Oops, Page was not found!</p>
|
<p>Oops, Page was not found!</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
.not-found {
|
.NotFound {
|
||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
}
|
}
|
||||||
|
@ -37,7 +37,7 @@ const VolunteerPage = ({ match }: Props): JSX.Element => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.volunteer}>
|
<div className={styles.VolunteerPage}>
|
||||||
<Helmet title="User Info" />
|
<Helmet title="User Info" />
|
||||||
{renderInfo()}
|
{renderInfo()}
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
.volunteer {
|
.VolunteerPage {
|
||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user