@iroco/ui 0.51.0 → 0.51.1

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
@@ -266,6 +266,13 @@ export let node;
266
266
  .iroco-ui-button:active {
267
267
  box-shadow: none;
268
268
  }
269
+ .iroco-ui-button .iroco-ui-link {
270
+ background: none;
271
+ border: none;
272
+ font-family: "Arial";
273
+ color: #f2ebe3;
274
+ cursor: pointer;
275
+ }
269
276
  .iroco-ui-button.disabled {
270
277
  background-color: #f5f5f5;
271
278
  cursor: default;
package/NavBar.svelte CHANGED
@@ -559,6 +559,14 @@ $:
559
559
  box-shadow: none;
560
560
  }
561
561
 
562
+ .iroco-ui-button .iroco-ui-link {
563
+ background: none;
564
+ border: none;
565
+ font-family: "Arial";
566
+ color: #f2ebe3;
567
+ cursor: pointer;
568
+ }
569
+
562
570
  .iroco-ui-button.disabled {
563
571
  background-color: #f5f5f5;
564
572
  cursor: default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iroco/ui",
3
- "version": "0.51.0",
3
+ "version": "0.51.1",
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
@@ -53,6 +53,14 @@
53
53
  box-shadow: none;
54
54
  }
55
55
 
56
+ .iroco-ui-link {
57
+ background: none;
58
+ border: none;
59
+ font-family: fonts.$arial;
60
+ color: colors.$beige;
61
+ cursor: pointer;
62
+ }
63
+
56
64
  &.disabled {
57
65
  background-color: colors.$lightGrey;
58
66
  cursor: default;