Skip to content

Commit

Permalink
feat: Update layout components to use dark mode css var
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Jun 23, 2020
1 parent 89345aa commit df29c40
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/Footer.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
display: flex;
justify-content: space-between;
align-items: center;
color: var(--color-neutrals-600);
color: var(--secondary-text-color);
font-size: 0.75rem;
z-index: 1;

Expand All @@ -27,7 +27,7 @@
.copyright {
margin-left: 0.5rem;
padding-left: 0.5rem;
border-left: 1px dotted var(--color-neutrals-400);
border-left: 1px dotted var(--border-color);

@media (max-width: 760px) {
border-left: none;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Layout.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
}

.footer {
border-top: 1px solid var(--color-neutrals-100);
border-top: 1px solid var(--divider-color);
padding-top: 2rem;
margin-top: 4rem;
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/Sidebar.module.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
.sidebar {
padding: 2rem;
border-right: 1px solid var(--color-neutrals-100);
border-right: 1px solid var(--divider-color);

@media screen and (max-width: 760px) {
height: 60px;
border-bottom: 1px solid var(--color-neutrals-100);
border-bottom: 1px solid var(--divider-color);
}
}

Expand Down

0 comments on commit df29c40

Please sign in to comment.