@iroco/ui 0.51.0 → 0.51.2

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/Button.svelte CHANGED
@@ -272,4 +272,12 @@ export let node;
272
272
  }
273
273
  .iroco-ui-button.disabled:hover {
274
274
  box-shadow: none;
275
+ }
276
+
277
+ .iroco-ui-link {
278
+ background: none;
279
+ border: none;
280
+ font-family: "Arial";
281
+ color: #f2ebe3;
282
+ cursor: pointer;
275
283
  }</style>
package/NavBar.svelte CHANGED
@@ -568,6 +568,14 @@ $:
568
568
  box-shadow: none;
569
569
  }
570
570
 
571
+ .iroco-ui-link {
572
+ background: none;
573
+ border: none;
574
+ font-family: "Arial";
575
+ color: #f2ebe3;
576
+ cursor: pointer;
577
+ }
578
+
571
579
  .nav__sidebar__item, .nav__topbar__item {
572
580
  text-decoration: none;
573
581
  display: block;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iroco/ui",
3
- "version": "0.51.0",
3
+ "version": "0.51.2",
4
4
  "description": "Iroco design system based on Svelte",
5
5
  "main": "lib/index.ts",
6
6
  "svelte": "index.js",
package/scss/button.scss CHANGED
@@ -61,3 +61,11 @@
61
61
  }
62
62
  }
63
63
  }
64
+
65
+ .iroco-ui-link {
66
+ background: none;
67
+ border: none;
68
+ font-family: fonts.$arial;
69
+ color: colors.$beige;
70
+ cursor: pointer;
71
+ }