Skip to content

Commit

Permalink
fix(styles): color of nested alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
Keisir authored and craftzdog committed Mar 20, 2024
1 parent 4d8fa35 commit 3ca47b8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,31 +27,31 @@ p.gfm-alert-title {
}

.gfm-alert-type-note {
p.gfm-alert-title {
> p.gfm-alert-title {
color: var(--gfm-alert-note);
}
border-color: var(--gfm-alert-note);
}
.gfm-alert-type-tip {
p.gfm-alert-title {
> p.gfm-alert-title {
color: var(--gfm-alert-tip);
}
border-color: var(--gfm-alert-tip);
}
.gfm-alert-type-important {
p.gfm-alert-title {
> p.gfm-alert-title {
color: var(--gfm-alert-important);
}
border-color: var(--gfm-alert-important);
}
.gfm-alert-type-warning {
p.gfm-alert-title {
> p.gfm-alert-title {
color: var(--gfm-alert-warning);
}
border-color: var(--gfm-alert-warning);
}
.gfm-alert-type-caution {
p.gfm-alert-title {
> p.gfm-alert-title {
color: var(--gfm-alert-caution);
}
border-color: var(--gfm-alert-caution);
Expand Down

0 comments on commit 3ca47b8

Please sign in to comment.