@anyblades/blades 2.4.2 → 2.4.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/css/blades.css +1 -1
- package/css/blades.standalone.core.css +1 -1
- package/css/blades.standalone.css +1 -1
- package/css/link-icon.css +1 -1
- package/package.json +1 -1
- package/src/link-icon.css +1 -1
package/css/blades.css
CHANGED
|
@@ -3327,7 +3327,7 @@ a > i {
|
|
|
3327
3327
|
text-underline-offset: -2em; /* ❌ Chrome ✅ Safari - to clip it with overflow-y */
|
|
3328
3328
|
}
|
|
3329
3329
|
/* Favicons */
|
|
3330
|
-
a > i > img {
|
|
3330
|
+
a > i > img:not(.does-not-exist) /* soft win specificity over img:not([height]) */ {
|
|
3331
3331
|
display: inline-block; /* for Tailwind CSS Typography */
|
|
3332
3332
|
max-width: none; /* to keep ratio safe */
|
|
3333
3333
|
height: 1.25em;
|
|
@@ -364,7 +364,7 @@ a > i {
|
|
|
364
364
|
|
|
365
365
|
/* Favicons */
|
|
366
366
|
|
|
367
|
-
a > i > img {
|
|
367
|
+
a > i > img:not(.does-not-exist) /* soft win specificity over img:not([height]) */ {
|
|
368
368
|
display: inline-block; /* for Tailwind CSS Typography */
|
|
369
369
|
max-width: none; /* to keep ratio safe */
|
|
370
370
|
height: 1.25em;
|
|
@@ -364,7 +364,7 @@ a > i {
|
|
|
364
364
|
|
|
365
365
|
/* Favicons */
|
|
366
366
|
|
|
367
|
-
a > i > img {
|
|
367
|
+
a > i > img:not(.does-not-exist) /* soft win specificity over img:not([height]) */ {
|
|
368
368
|
display: inline-block; /* for Tailwind CSS Typography */
|
|
369
369
|
max-width: none; /* to keep ratio safe */
|
|
370
370
|
height: 1.25em;
|
package/css/link-icon.css
CHANGED
|
@@ -14,7 +14,7 @@ a > i {
|
|
|
14
14
|
text-underline-offset: -2em; /* ❌ Chrome ✅ Safari - to clip it with overflow-y */
|
|
15
15
|
}
|
|
16
16
|
/* Favicons */
|
|
17
|
-
a > i > img {
|
|
17
|
+
a > i > img:not(.does-not-exist) /* soft win specificity over img:not([height]) */ {
|
|
18
18
|
display: inline-block; /* for Tailwind CSS Typography */
|
|
19
19
|
max-width: none; /* to keep ratio safe */
|
|
20
20
|
height: 1.25em;
|
package/package.json
CHANGED
package/src/link-icon.css
CHANGED
|
@@ -15,7 +15,7 @@ a {
|
|
|
15
15
|
text-underline-offset: -2em; /* ❌ Chrome ✅ Safari - to clip it with overflow-y */
|
|
16
16
|
|
|
17
17
|
/* Favicons */
|
|
18
|
-
> img {
|
|
18
|
+
> img:not(.does-not-exist) /* soft win specificity over img:not([height]) */ {
|
|
19
19
|
height: 1.25em;
|
|
20
20
|
margin-block-start: calc(-0.25em / 2);
|
|
21
21
|
max-width: none; /* to keep ratio safe */
|