JSFiddle - React, Tailwind, and code Playground
by chrischilcoat
HTML
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.4/tailwind.min.css">
<div id="app"></div>
CSS
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide:{
-ms-overflow-style: none; // IE and Edge
scrollbar-width: none; // Firefox
}
React
export default function Example() {
return (
<div className="relative z-40 bg-white shadow-sm">
fuck
</div>
)
}
ReactDOM.render(<Example />, document.querySelector("#app"))