@data-fair/lib-vuetify 1.11.1 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/style/global.scss +8 -2
package/package.json
CHANGED
package/style/global.scss
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
@use 'vuetify' with (
|
|
2
2
|
$color-pack: false,
|
|
3
|
-
$body-font-family:
|
|
4
|
-
$heading-font-family:
|
|
3
|
+
$body-font-family: var(--d-body-font-family),
|
|
4
|
+
$heading-font-family: var(--d-heading-font-family)
|
|
5
5
|
);
|
|
6
6
|
|
|
7
7
|
// v-icon has an opacity when it is prepended in a list of items.
|
|
8
8
|
// ref: https://github.com/vuetifyjs/vuetify/issues/18760
|
|
9
9
|
.v-icon {
|
|
10
10
|
--v-medium-emphasis-opacity: 1 !important;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
// default font variables values provide retro-compatibility with the aliases we used before
|
|
14
|
+
:root {
|
|
15
|
+
--d-body-font-family: BodyFontFamily;
|
|
16
|
+
--d-heading-font-family: HeadingFontFamily;
|
|
11
17
|
}
|