Fix padding

This commit is contained in:
lukylix 2023-07-07 21:28:01 +02:00
parent 4b3e24038c
commit 0dcc789980

View File

@ -87,7 +87,7 @@ export default function Container({ error = false, children, service }) {
<div className={`relative grid p-1 gap-2 w-full auto-rows-max ${subColumnsClassMap[numberOfChildren]}`}> <div className={`relative grid p-1 gap-2 w-full auto-rows-max ${subColumnsClassMap[numberOfChildren]}`}>
{childrensTopRows} {childrensTopRows}
{childrensToSlice > 0 && ( {childrensToSlice > 0 && (
<div className="relative grid col-span-full p-1 gap-2 w-full auto-rows-max grid-cols-[repeat(auto-fit,minmax(6rem,1fr))]"> <div className="relative grid col-span-full gap-2 w-full auto-rows-max grid-cols-[repeat(auto-fit,minmax(6rem,1fr))]">
{childrensBottomRows} {childrensBottomRows}
</div> </div>
)} )}