How do i make my scroll bar not show?

Is is possible to make the scroll bar not display? whether it be through using custom code, velo or an option? Thank you.

hey, Kaizo
we got very nice discussion here about this: https://www.editorxcommunity.com/forum/general-discussions/remove-scrollbar

By placing this Code in the header as a custom code, it will hide the scrollbar. Worked properly on my end.

<script>
  window.onload = function() {
    var style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = 'html { overflow: -moz-scrollbars-none; } html::-webkit-scrollbar { width: 0 !important }';
    document.head.appendChild(style);
  };
</script>