@nuvoui/core 1.4.4 → 1.4.6
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/dist/nuvoui.css +2 -5
- package/dist/nuvoui.css.map +1 -1
- package/dist/nuvoui.min.css +1 -1
- package/dist/nuvoui.min.css.map +1 -1
- package/package.json +1 -1
- package/src/styles/base/_base.scss +1 -4
- package/src/styles/functions/_math.scss +1 -1
- package/src/styles/utilities/_typography.scss +10 -3
package/dist/nuvoui.css
CHANGED
|
@@ -295,13 +295,10 @@ figcaption {
|
|
|
295
295
|
color: var(--text-muted, #666);
|
|
296
296
|
}
|
|
297
297
|
|
|
298
|
-
a {
|
|
299
|
-
transition: color 0.2s ease-in-out;
|
|
300
|
-
}
|
|
301
|
-
a:not([class*=text-]) {
|
|
298
|
+
a:not([class]) {
|
|
302
299
|
color: var(--link-color);
|
|
303
300
|
}
|
|
304
|
-
a:not([class
|
|
301
|
+
a:not([class]):hover {
|
|
305
302
|
color: var(--link-hover-color);
|
|
306
303
|
}
|
|
307
304
|
|