@oardi/css-utils 0.60.0 → 0.60.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/package.json +1 -1
- package/scss/components/button.scss +1 -3
- package/scss/index.scss +1 -1
- package/scss/utilities.scss +1 -3
package/package.json
CHANGED
|
@@ -124,11 +124,8 @@
|
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
&:focus-visible {
|
|
127
|
-
// color: var(--button-on-color);
|
|
128
127
|
outline: var(--button-focus-outline-width) var(--button-focus-outline-style)
|
|
129
128
|
rgba(var(--button-color-rgb), 0.5);
|
|
130
|
-
// background-color: var(--button-color);
|
|
131
|
-
// border-color: var(--button-color);
|
|
132
129
|
}
|
|
133
130
|
}
|
|
134
131
|
|
|
@@ -142,6 +139,7 @@
|
|
|
142
139
|
&:hover,
|
|
143
140
|
&.is-active,
|
|
144
141
|
&:active {
|
|
142
|
+
// color: var(--button-on-color); // check if needed
|
|
145
143
|
background-color: var(--button-highlight);
|
|
146
144
|
}
|
|
147
145
|
|
package/scss/index.scss
CHANGED
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
@forward './components/navbar.scss';
|
|
38
38
|
@forward './components/overlay.scss';
|
|
39
39
|
@forward './components/pagination.scss';
|
|
40
|
-
@forward './components/tabs.scss';
|
|
41
40
|
@forward './components/table.scss';
|
|
41
|
+
@forward './components/tabs.scss';
|
|
42
42
|
@forward './components/toast.scss';
|
|
43
43
|
@forward './components/tooltip.scss';
|