Skip to content

Commit

Permalink
fix: various colors
Browse files Browse the repository at this point in the history
  • Loading branch information
lxndrblz committed Feb 12, 2022
1 parent 00e408a commit 8249f80
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion assets/scss/modules/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ $accent--darkmode: #152028;
$primary--darkmode: #eeeeee;
$primary-light--darkmode: #9f9f9f;
$primary-lighter--darkmode: #464646;
$shadow--darkmode: 0 8px 16px rgba(10, 10, 10, 0.1);
$shadow--darkmode: 0 8px 16px rgba(226, 226, 226, 0.1);

$alert: #ffc107;
$info: #0366d7;
Expand Down
9 changes: 4 additions & 5 deletions assets/scss/partials/components/_languageswitch.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@

@include desktop {
@include themed() {
background: t(accent);
border-color: t(primary);
box-shadow: t(shadow);
background: t('primary-lighter');
box-shadow: t('shadow');
}
border-radius: 5px;
position: absolute;
Expand Down Expand Up @@ -45,9 +44,9 @@

&::before {
@include themed() {
background: t('accent');
background: t('primary-lighter');
box-shadow: t('shadow');
border-color: t('primary');
border-color: t('primary-lighter');
}
content: '';
border-radius: 2px 0px 0px 0px;
Expand Down
3 changes: 0 additions & 3 deletions assets/scss/partials/layout/_nav.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
.nav {
@include themed() {
box-shadow: t('shadow');
}
display: none;

&__list {
Expand Down

0 comments on commit 8249f80

Please sign in to comment.