mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-09-11 22:06:29 +02:00
Rename non-camel-cased css classes
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
exports[`<NotFound /> renders 1`] = `
|
||||
<div
|
||||
class="not-found"
|
||||
class="NotFound"
|
||||
>
|
||||
<p>
|
||||
Oops, Page was not found!
|
||||
|
@@ -13,7 +13,7 @@ const NotFound = ({ staticContext }: Props) => {
|
||||
if (staticContext) staticContext.statusCode = 404
|
||||
|
||||
return (
|
||||
<div className={styles["not-found"]}>
|
||||
<div className={styles.NotFound}>
|
||||
<Helmet title="Oops" />
|
||||
<p>Oops, Page was not found!</p>
|
||||
</div>
|
||||
|
@@ -1,3 +1,3 @@
|
||||
.not-found {
|
||||
.NotFound {
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
@@ -37,7 +37,7 @@ const VolunteerPage = ({ match }: Props): JSX.Element => {
|
||||
}
|
||||
|
||||
return (
|
||||
<div className={styles.volunteer}>
|
||||
<div className={styles.VolunteerPage}>
|
||||
<Helmet title="User Info" />
|
||||
{renderInfo()}
|
||||
</div>
|
||||
|
@@ -1,3 +1,3 @@
|
||||
.volunteer {
|
||||
.VolunteerPage {
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
Reference in New Issue
Block a user