Skip to content

Commit

Permalink
fix: 强制应用标签颜色以确保样式一致性
Browse files Browse the repository at this point in the history
  • Loading branch information
tuanzisama committed Dec 25, 2024
1 parent 563b3a3 commit 0de8b45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,14 @@ onMounted(() => {
.VPHero {
color: #515c67;
.tagline {
color: #414853;
color: #414853 !important;
}
}
html.dark {
.VPHero {
color: rgba(255, 255, 245, 0.86);
.tagline {
color: rgba(235, 235, 245, 0.6);
color: rgba(235, 235, 245, 0.6) !important;
}
}
}
Expand All @@ -129,7 +129,7 @@ onMounted(() => {
.VPHero {
color: rgba(255, 255, 245, 0.86);
.tagline {
color: rgba(235, 235, 245, 0.6);
color: rgba(235, 235, 245, 0.6) !important;
}
}
}
Expand Down

0 comments on commit 0de8b45

Please sign in to comment.