ui: increase spacing at bottom of grid

This commit is contained in:
tomholford 2023-04-24 14:22:34 -07:00
parent e22d4d380a
commit a7835f69be

View File

@ -86,7 +86,7 @@ export const TileGrid = ({ menu }: TileGridProps) => {
<div
// This version of tailwind does not have h-fit
style={{ height: 'fit-content' }}
className="grid w-full max-w-6xl grid-cols-2 justify-center gap-4 px-4 sm:grid-cols-[repeat(auto-fit,minmax(auto,250px))] md:px-8"
className="grid w-full max-w-6xl grid-cols-2 justify-center gap-4 pb-4 px-4 sm:grid-cols-[repeat(auto-fit,minmax(auto,250px))] md:pb-10 md:px-8"
>
{order
.filter((d) => d !== window.desk && d in charges)