gonna try not doing the dynamic width idek

This commit is contained in:
mehbark 2023-07-11 14:24:29 -04:00
parent fe034be441
commit 165928d8d4

View file

@ -54,7 +54,7 @@ function weird_slices<T>(arr: T[]): T[][] {
const MultiWheel: Component = ({ items }, _) => (
<div class="multiwheel">
{...weird_slices(items).map(items => (
<Wheel items={items} width={1 / items.length} />
<Wheel items={items} /*width={1 / items.length}*/ />
))}
<Wheel items={items} classes={["invisible"]} />
</div>