fix: inconsistent spacing

This commit is contained in:
alexsparkes
2024-08-24 00:39:54 +01:00
parent 67649d1985
commit e5a175db47
2 changed files with 7 additions and 2 deletions

View File

@@ -92,7 +92,7 @@ const Controls = (props) => {
const Hero = (props) => {
return (
<div className="grid grid-cols-2 w-full rounded gap-10 auto-rows-[1fr]">{props.children}</div>
<div className="grid grid-cols-2 w-full rounded gap-3 auto-rows-[1fr]">{props.children}</div>
);
};