Skip to content

Commit

Permalink
feat: Update 404 page for dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Jun 23, 2020
1 parent 737d1dd commit d4b1463
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SkewedContainer.module.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.container {
background: var(--color-neutrals-100);
background: var(--secondary-background-color);
transform: skew(0, -2deg);
}

Expand Down
8 changes: 8 additions & 0 deletions src/pages/404.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,17 @@
.footerContainer {
background: var(--color-neutrals-800);
padding: 1.5rem;

:global(.dark-mode) & {
background: var(--tertiary-background-color);
}
}

.footer {
color: var(--color-teal-300);
padding: 0 2rem;

:global(.dark-mode) & {
color: var(--secondary-text-color);
}
}

0 comments on commit d4b1463

Please sign in to comment.