@digigov/css 0.38.2 → 0.38.3
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/defaultTheme/typography.json +3 -0
- package/dist/base/index.css +3 -3
- package/dist/base.js +1 -1
- package/dist/components.js +1 -1
- package/dist/digigov.css +4 -4
- package/package.json +2 -2
- package/src/components/typography.css +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/css",
|
|
3
|
-
"version": "0.38.
|
|
3
|
+
"version": "0.38.3",
|
|
4
4
|
"description": "Digigov CSS - Tailwind CSS Components",
|
|
5
5
|
"author": "GRNET Devs <devs@lists.grnet.gr>",
|
|
6
6
|
"license": "BSD-2-Clause",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"tailwindcss": "2.2.6",
|
|
50
50
|
"nodemon": "2.0.7",
|
|
51
51
|
"next": "10.0.9",
|
|
52
|
-
"@digigov/postcss-banner": "0.3.
|
|
52
|
+
"@digigov/postcss-banner": "0.3.23",
|
|
53
53
|
"rimraf": "3.0.2",
|
|
54
54
|
"postcss-js": "4.0.0",
|
|
55
55
|
"postcss-load-config": "3.1.4",
|
|
@@ -171,14 +171,15 @@
|
|
|
171
171
|
font-size: var(--link-font-size);
|
|
172
172
|
line-height: var(--link-line-height);
|
|
173
173
|
letter-spacing: var(--link-letter-spacing);
|
|
174
|
-
&:hover
|
|
174
|
+
&:hover {
|
|
175
175
|
text-decoration-thickness: 2px;
|
|
176
176
|
color: var(--link-color-hover);
|
|
177
177
|
}
|
|
178
178
|
&:focus {
|
|
179
|
+
color: var(--link-color-active);
|
|
179
180
|
background-color: var(--color-focus);
|
|
180
181
|
box-shadow: 0 -2px var(--color-focus), 0 4px var(--color-base-content);
|
|
181
|
-
text-decoration:none;
|
|
182
|
+
text-decoration:none !important;
|
|
182
183
|
outline: none;
|
|
183
184
|
}
|
|
184
185
|
}
|
|
@@ -207,6 +208,7 @@
|
|
|
207
208
|
}
|
|
208
209
|
}
|
|
209
210
|
}
|
|
211
|
+
|
|
210
212
|
.govgr-back-link {
|
|
211
213
|
font-size: var(--back-link-font-size);
|
|
212
214
|
letter-spacing: var(--back-link-letter-spacing);
|