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

@@ -2,7 +2,7 @@
exports[`<NotFound /> renders 1`] = `
<div
class="NotFound"
class="not-found"
>
<p>
Oops, Page was not found!

View File

@@ -13,7 +13,7 @@ const NotFound = ({ staticContext }: Props) => {
if (staticContext) staticContext.statusCode = 404
return (
<div className={styles.NotFound}>
<div className={styles["not-found"]}>
<Helmet title="Oops" />
<p>Oops, Page was not found!</p>
</div>

View File

@@ -1,3 +1,3 @@
.NotFound {
.not-found {
padding: 0 15px;
}