I inserted the following code into my index.html file:
<head>
<style>
body::-webkit-scrollbar {
display: none;
}
</style>
</head>
This code successfully hides the scrollbar. My goal is to only hide the scrollbar when the jobs-component
is present. If another component is on the page, I want the scrollbar to be visible. How can I accomplish this?