vuejs / vitepress

Vite & Vue powered static site generator.
https://vitepress.dev
MIT License
11.48k stars 1.86k forks source link

Define the font for "home hero name" #3678

Closed wuchenchina closed 1 month ago

wuchenchina commented 1 month ago
/**
 * Fonts
 * -------------------------------------------------------------------------- */

:root {
  --vp-font-family-base: LXGWWenKai;  /* normal text font */
  --vp-font-family-mono: LXGWWenKaiMono;  /* code font */
}

I have set the overall font like the code above, but I still want "home hero name" to use "Intel" font. How do I do this? Thank you very much!

brc-dd commented 1 month ago
.VPHero .name {
  font-family: "Inter var", "Inter", system-ui;
}
wuchenchina commented 1 month ago

ok, thanks