Skip to content

Commit

Permalink
feat: add styles global navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
ialexanderbrito committed Apr 6, 2022
1 parent 7df070c commit 11e2ca5
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/styles/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@
--black-medium: #28262e;
--input: #afa298;
--calendar: #ccc6c2;

--bg: #242526;
--bg-accent: #484a4d;
--text-color: #dadce1;
--nav-size: 60px;
--border: 1px solid #474a4d;
--border-radius: 8px;
--speed: 500ms;
}

[data-theme="dark"] {
Expand All @@ -20,6 +28,14 @@
--black-medium: #28262e;
--input: #232129;
--calendar: #28262e;

--bg: #242526;
--bg-accent: #484a4d;
--text-color: #dadce1;
--nav-size: 60px;
--border: 1px solid #474a4d;
--border-radius: 8px;
--speed: 500ms;
}

* {
Expand All @@ -34,6 +50,17 @@ body {
color: var(--text-color);
}

ul {
list-style: none;
margin: 0;
padding: 0;
}

a {
color: var(--text-color);
text-decoration: none;
}

.wrapper {
display: flex;
}
Expand Down

0 comments on commit 11e2ca5

Please sign in to comment.