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