如何更改Vuetify SCSS的$ font-weights?

时间:2020-08-31 06:34:00

标签: sass fonts vuetify.js

默认.font-weight-medium为500,我想将其特定字体更改为600。根据{{​​3}},这些是$font-weights的默认值:

map-deep-merge(
  (
    'thin': 100,
    'light': 300,
    'regular': 400,
    'medium': 500,
    'bold': 700,
    'black': 900
  ),
  $font-weights
);

我尝试将$fonts-weights中的variables.scss设置为

 $font-weights: (
    'thin': 100,
    'light': 300,
    'regular': 400,
    'medium': 600,
    'bold': 700,
    'black': 900
  )

但是没有用。

0 个答案:

没有答案