Changed layout to vertical
This commit is contained in:
parent
f51c5201e6
commit
5093fbcb93
@ -20,9 +20,9 @@ export default function BingoController(){
|
|||||||
const sizeError = (items.length < size);
|
const sizeError = (items.length < size);
|
||||||
return(
|
return(
|
||||||
<>
|
<>
|
||||||
<div className="w-3/4 flex flex-row m-auto">
|
<div className="w-3/4 flex flex-col m-auto gap-4">
|
||||||
<Bingo size={size} items={items}/>
|
<Bingo size={size} items={items}/>
|
||||||
<form className="w-1/3">
|
<form className="w-1/3 m-auto">
|
||||||
<input type="range" min={3} max={5} value={size} className="range range-primary" step={1} onChange={({target:{value:s}}) => setSize(+s)}/>
|
<input type="range" min={3} max={5} value={size} className="range range-primary" step={1} onChange={({target:{value:s}}) => setSize(+s)}/>
|
||||||
<div className="w-full flex justify-between text-xs px-2">
|
<div className="w-full flex justify-between text-xs px-2">
|
||||||
<span>3x3</span>
|
<span>3x3</span>
|
||||||
|
Loading…
Reference in New Issue
Block a user