padding adjustments?

This commit is contained in:
Flatlogic Bot 2025-08-08 10:13:16 +00:00
parent 9f4669aa75
commit a9114d1eb9
6 changed files with 12 additions and 7 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
node_modules/
*/node_modules/
*/build/
**/node_modules/
**/build/
.DS_Store
.env

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{}

View File

@ -14,7 +14,7 @@ export default function CardBoxComponentBody({
id,
}: Props) {
return (
<div id={id} className={`flex-1 ${noPadding ? '' : 'p-6'} ${className}`}>
<div id={id} className={`flex-1 ${noPadding ? '' : 'p-8'} ${className}`}>
{children}
</div>
);

View File

@ -52,7 +52,7 @@ const FormField = ({ icons = [], ...props }: Props) => {
].join(' ');
return (
<div className='mb-6 last:mb-0'>
<div className='mb-8 last:mb-0'>
{props.label && (
<label
htmlFor={props.labelFor}

View File

@ -6,5 +6,5 @@ type Props = {
};
export default function SectionMain({ children }: Props) {
return <section className={`p-6 ${containerMaxW}`}>{children}</section>;
return <section className={`p-8 ${containerMaxW}`}>{children}</section>;
}