Reduced and standardized overall vertical spacing

This commit is contained in:
Alejandro Celaya
2021-03-29 21:08:48 +02:00
parent c3d6c83ec4
commit 7f61825768
5 changed files with 22 additions and 22 deletions

View File

@@ -7,7 +7,7 @@ const SettingsSections: FC<{ items: ReactNode[][] }> = ({ items }) => (
{items.map((child, index) => (
<Row key={index}>
{child.map((subChild, subIndex) => (
<div key={subIndex} className="col-lg-6 mb-3 mb-md-4">
<div key={subIndex} className="col-lg-6 mb-3">
{subChild}
</div>
))}