25 lines
442 B
SCSS
25 lines
442 B
SCSS
/**
|
|
* src/styles/settings.scss
|
|
*
|
|
* Configures SASS variables and Vuetify overwrites
|
|
*/
|
|
|
|
// https://vuetifyjs.com/features/sass-variables/`
|
|
// @use 'vuetify/settings' with (
|
|
// $color-pack: false
|
|
// );
|
|
|
|
@use 'vuetify/settings' with (
|
|
$body-font-family: (
|
|
-apple-system,
|
|
BlinkMacSystemFont,
|
|
'Segoe UI',
|
|
'Helvetica Neue',
|
|
Arial,
|
|
'Microsoft JhengHei',
|
|
'PingFang TC',
|
|
'Noto Sans TC',
|
|
sans-serif,
|
|
)
|
|
);
|