@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 +7 -0
- package/NavBar.svelte +8 -0
- package/package.json +1 -1
- package/scss/button.scss +8 -0
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
package/scss/button.scss
CHANGED