Skip to content

Instantly share code, notes, and snippets.

@peeyush14goyal
Created January 29, 2023 08:17
Show Gist options
  • Save peeyush14goyal/64ba35628326d6e7bb81ea72e8dd93bc to your computer and use it in GitHub Desktop.
Save peeyush14goyal/64ba35628326d6e7bb81ea72e8dd93bc to your computer and use it in GitHub Desktop.
/* Main Div Component */
const MovieComp = () => {
return <div className="hovs-main"></div>
}
/* styles.css */
.hovs-main {
align-items: center;
display: flex;
flex-direction: row;
justify-content: space-between;
margin: 0 auto;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.hovs-main::-webkit-scrollbar {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment