@data-fair/lib-vuetify 2.0.3 → 2.0.4

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/default.scss CHANGED
@@ -1,3 +1,5 @@
1
+ // @deprecated Use style/global.scss instead.
2
+
1
3
  @use 'vuetify' with (
2
4
  $color-pack: false,
3
5
  $body-font-family: 'Nunito'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@data-fair/lib-vuetify",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "Components based on the Vuetify 3 UI lib for the data-fair stack.",
5
5
  "main": "index.js",
6
6
  "files": [
package/style/global.scss CHANGED
@@ -4,6 +4,19 @@
4
4
  $heading-font-family: var(--d-heading-font-family)
5
5
  );
6
6
 
7
+ // CSS reset removed from Vuetify 4
8
+ // cf https://vuetifyjs.com/en/getting-started/upgrade-guide/
9
+ @layer vuetify-core.reset {
10
+ ul, ol, figure, details, summary {
11
+ padding: 0;
12
+ margin: 0;
13
+ }
14
+
15
+ h1, h2, h3, h4, h5, h6 {
16
+ margin: 0;
17
+ }
18
+ }
19
+
7
20
  // v-icon has an opacity when it is prepended in a list of items.
8
21
  // ref: https://github.com/vuetifyjs/vuetify/issues/18760
9
22
  .v-icon {