forked from SPC/spc-site
Remove underline from image links
This commit is contained in:
parent
950903c938
commit
37156c79ad
@ -584,4 +584,9 @@
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Remove `border-bottom` from all `<a>` elements that also contain an `<img>`
|
||||||
|
document.querySelectorAll("a > img").forEach(
|
||||||
|
imgEl => { imgEl.parentElement.style.borderBottom = "none" }
|
||||||
|
);
|
||||||
|
|
||||||
})(jQuery);
|
})(jQuery);
|
Loading…
Reference in New Issue
Block a user