Skip to content

Commit

Permalink
light theme fix
Browse files Browse the repository at this point in the history
  • Loading branch information
trean committed Dec 4, 2024
1 parent 0b07630 commit 025cc21
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,18 @@
line-height: pxToRem(21);
color: $neutral-50;
}
[data-theme="light"] & {
&-about {
color: $neutral-30;
}
&-title {
color: $neutral-30;
}
&-description {
color: $neutral-50;
font-weight: 400;
}
}
}

.post-sm {
Expand Down Expand Up @@ -109,4 +121,14 @@
}
}
}

[data-theme="light"] & {
&__title {
color: $neutral-30;
}
&__description {
color: $neutral-50;
font-weight: 400;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@
gap: $spacer * 0.5;
margin-bottom: $spacer;
padding: $spacer * 0.5 0;
color: $neutral-70
color: $neutral-70;
&:hover {
color: $neutral-90;
svg path {
stroke: $neutral-90;
}
}
}

.documentation-article__header-title {
Expand Down Expand Up @@ -138,5 +144,20 @@
@extend .table-light;
}
}
&__header-link {
color: $neutral-50;
svg path {
stroke: $neutral-50;
}
&:hover {
color: $neutral-30;
svg path {
stroke: $neutral-30;
}
}
}
&__header-about {
color: $neutral-50;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -375,5 +375,16 @@
}
}
}
&__articles-link {
&.active {
background-color: $neutral-90;
border-radius: $spacer * 0.5;

a {
color: $neutral-30;
font-weight: bold;
}
}
}
}
}

0 comments on commit 025cc21

Please sign in to comment.