vuepress / ecosystem

Official plugins and themes for VuePress2
https://ecosystem.vuejs.press
MIT License
28 stars 36 forks source link

[Feature request] Dynamically color change of the level-2 headings border #190

Closed onedonedone closed 3 months ago

onedonedone commented 3 months ago

Feature request

Description

Level-2 headings border flashs when changing colors since the transition time is not consistent with the background.

https://github.com/vuepress/ecosystem/assets/168573322/2e0e61cd-1066-42ac-a4be-8ed33221bcd4

Suggested solution

Since the transition style of body and code elements are set in src/client/styles/normalize.scss, I think it might be proper to add here.

// normalize.scss
...
h2 {
  border-color: var(--c-border);
  transition: border-color var(--t-color);
}
...