@visualizevalue/mint-app-base 0.1.1 → 0.1.3

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.
@@ -8,10 +8,10 @@ html {
8
8
  /*
9
9
  * Font settings
10
10
  */
11
+ font-size: var(--rem);
11
12
  font-family: var(--font-family);
12
13
  line-height: var(--line-height-base);
13
14
  font-weight: var(--font-weight);
14
- font-size: var(--rem);
15
15
  font-style: normal;
16
16
  letter-spacing: var(--letter-spacing);
17
17
  text-transform: var(--text-transform);
@@ -23,6 +23,14 @@ html {
23
23
  }
24
24
 
25
25
  body {
26
+ /*
27
+ * We treat font sizes are separate from the root em (--rem) seetting.
28
+ */
29
+ font-size: var(--font-base);
30
+
31
+ /*
32
+ * We prevent horizontal overflow
33
+ */
26
34
  overflow-x: hidden;
27
35
  }
28
36
 
@@ -5,8 +5,7 @@
5
5
  --black: rgb(0, 0, 0);
6
6
 
7
7
  /* COLORS */
8
- --blue: #3263D0;
9
- --primary: var(--blue);
8
+ --primary: blue;
10
9
 
11
10
  /*
12
11
  * Z-COLORS
@@ -13,6 +13,14 @@ defineProps({
13
13
  })
14
14
  </script>
15
15
 
16
+ <style>
17
+ :root {
18
+ --breadcrumb-nav-color: var(--muted);
19
+ --breadcrumb-nav-active-color: var(--muted);
20
+ --breadcrumb-separator-color: var(--muted);
21
+ }
22
+ </style>
23
+
16
24
  <style scoped>
17
25
  .breadcrumb {
18
26
  display: flex;
@@ -33,18 +41,18 @@ defineProps({
33
41
  }
34
42
 
35
43
  > span > a {
36
- color: var(--muted);
44
+ color: var(--breadcrumb-nav-color);
37
45
  transition: all var(--speed);
38
46
 
39
47
  &.router-link-active-exact,
40
48
  &:--highlight {
41
- color: var(--color);
49
+ color: var(--breadcrumb-nav-active-color);
42
50
  }
43
51
  }
44
52
 
45
53
  > span:not(:last-child):after {
46
54
  content: '/';
47
- color: var(--);
55
+ color: var(--breadcrumb-separator-color);
48
56
  margin-left: var(--spacer-sm);
49
57
  }
50
58
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visualizevalue/mint-app-base",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "main": "./nuxt.config.ts",
6
6
  "dependencies": {