@entur/typography 1.7.4 → 1.7.5
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/styles.css +19 -1
- package/package.json +3 -3
package/dist/styles.css
CHANGED
|
@@ -260,11 +260,20 @@ html {
|
|
|
260
260
|
background-position: 0 100%;
|
|
261
261
|
}
|
|
262
262
|
.eds-link:hover {
|
|
263
|
-
animation: eds-link-underline 0.3s ease-in;
|
|
263
|
+
-webkit-animation: eds-link-underline 0.3s ease-in;
|
|
264
|
+
animation: eds-link-underline 0.3s ease-in;
|
|
264
265
|
}
|
|
265
266
|
.eds-contrast .eds-link {
|
|
266
267
|
background-image: linear-gradient(120deg, #ffffff 0%, #ffffff 100%);
|
|
267
268
|
}
|
|
269
|
+
@-webkit-keyframes eds-link-underline {
|
|
270
|
+
from {
|
|
271
|
+
background-size: 0% 0.125rem;
|
|
272
|
+
}
|
|
273
|
+
to {
|
|
274
|
+
background-size: 100% 0.125rem;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
268
277
|
@keyframes eds-link-underline {
|
|
269
278
|
from {
|
|
270
279
|
background-size: 0% 0.125rem;
|
|
@@ -492,6 +501,15 @@ html {
|
|
|
492
501
|
margin-bottom: 0;
|
|
493
502
|
}
|
|
494
503
|
|
|
504
|
+
@-webkit-keyframes lineExpand {
|
|
505
|
+
0% {
|
|
506
|
+
width: 0;
|
|
507
|
+
}
|
|
508
|
+
100% {
|
|
509
|
+
width: 100%;
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
|
|
495
513
|
@keyframes lineExpand {
|
|
496
514
|
0% {
|
|
497
515
|
width: 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/typography",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.5",
|
|
4
4
|
"license": "SEE LICENSE IN README.md",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/typography.esm.js",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"react-dom": ">=16.8.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@entur/utils": "^0.
|
|
30
|
+
"@entur/utils": "^0.5.0",
|
|
31
31
|
"classnames": "^2.3.1",
|
|
32
32
|
"normalize-scss": "^7.0.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@entur/tokens": "^3.4.4"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "36772ae4f2d8375622acff19736c07d15435cb95"
|
|
38
38
|
}
|