diff --git a/data/home/assets/js/util.js b/data/home/assets/js/util.js index ecf7b37..8fd37a9 100644 --- a/data/home/assets/js/util.js +++ b/data/home/assets/js/util.js @@ -584,4 +584,9 @@ }; -})(jQuery); \ No newline at end of file + // Remove `border-bottom` from all `` elements that also contain an `` + document.querySelectorAll("a > img").forEach( + imgEl => { imgEl.parentElement.style.borderBottom = "none" } + ); + +})(jQuery);