Skip to content

Commit

Permalink
feat: adjust color
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentdchan committed Nov 27, 2023
1 parent 7060224 commit 6f20889
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions packages/blocky-example/app/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
max-width: 260px;
border-right-style: solid;
border-right-width: 1px;
border-right-color: grey;
border-right-color: var(--border-color);
flex-shrink: 0;
padding-top: 1rem;

Expand All @@ -36,7 +36,6 @@
}
}


.blocky-example-container {
height: 100%;
overflow-x: hidden;
Expand All @@ -60,12 +59,14 @@ body {

:root {
--bg-color: white;
--border-color: #e0e0e0;
--primary-text-color: black;
--danger-color: rgb(201, 56, 56);
}

[data-theme="dark"] {
--bg-color: #161625;
--border-color: #1d1d2b;
--primary-text-color: #c3c3bf;
}

Expand Down
2 changes: 1 addition & 1 deletion packages/blocky-example/components/navbar.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
padding-left: 1.3rem;
padding-right: 1.3rem;
display: flex;
border-bottom: 1px solid gray;
border-bottom: 1px solid var(--border-color);
background-color: var(--bg-color);
}

Expand Down

0 comments on commit 6f20889

Please sign in to comment.