.root { @apply flex flex-col relative select-none w-full; overflow: hidden; } .slider { @apply flex-1; } .thumb { @apply overflow-hidden inline-block cursor-pointer h-full; width: 125px; width: calc(100% / 3); } .thumb.selected { @apply bg-white; } .thumb img { @apply w-full h-full object-cover transition duration-300; } .thumb:hover img { @apply md:hover:scale-105; } .album { width: 100%; height: 100%; @apply bg-violet-dark; box-sizing: content-box; overflow-y: hidden; overflow-x: auto; white-space: nowrap; height: 125px; scrollbar-width: none; } /* Hide scrollbar for Chrome, Safari and Opera */ .album::-webkit-scrollbar { display: none; } @screen md { .album { height: 182px; } .thumb { width: 235px; } }