Skip to content

Commit

Permalink
suppress horizontal scrollbar on trending cloud page
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketMan committed Dec 11, 2024
1 parent cd97969 commit c3694e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/trending.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ function reposition() {

$("#cloud").css('margin-left', -pos.left + 'px')
.css('margin-top', -pos.top+20 + 'px')
.css('opacity', 1);
.css('opacity', 1)
.parent().css('overflow-x','clip');

loading = false;
}
Expand Down

0 comments on commit c3694e1

Please sign in to comment.