Skip to content

Commit

Permalink
fix: set custom border color for replies section
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsPi3141 committed Jan 25, 2025
1 parent c8b9bcf commit 3858a58
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion public/giscus.css
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ body {
border-bottom: none;
}

.gsc-replies {
border-color: var(--border-normal) !important;
}

.btn {
background: var(--button-secondary-background);
border: solid 1px var(--button-secondary-border) !important;
Expand Down Expand Up @@ -173,7 +177,11 @@ body {
}
&.has-reacted {
color: var(--text-link);
background: color-mix(in srgb, var(--button-primary-background) 20%, transparent) !important;
background: color-mix(
in srgb,
var(--button-primary-background) 20%,
transparent
) !important;
border-color: var(--button-primary-background) !important;
}
}
Expand Down

0 comments on commit 3858a58

Please sign in to comment.