@data-fair/lib-common-types 1.19.3 → 1.19.4
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/theme/index.js +1 -1
package/package.json
CHANGED
package/theme/index.js
CHANGED
|
@@ -147,7 +147,7 @@ export const getTextColorsCss = (colors, theme) => {
|
|
|
147
147
|
// by default give the text-primary color to links with the "simple-link" class
|
|
148
148
|
if (colors['text-primary']) {
|
|
149
149
|
css += `
|
|
150
|
-
.v-theme--${theme} a.simple-link { color: ${colors['text-primary']} }`;
|
|
150
|
+
.v-theme--${theme} a.simple-link { color: ${colors['text-primary']}; text-decoration: none; }`;
|
|
151
151
|
}
|
|
152
152
|
for (const color of ['surface-inverse', 'primary', 'secondary', 'accent', 'error', 'info', 'success', 'warning', 'admin']) {
|
|
153
153
|
// create a text-color class to apply text-* color variants
|