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/
*/node_modules/ */node_modules/
*/build/ */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, id,
}: Props) { }: Props) {
return ( return (
<div id={id} className={`flex-1 ${noPadding ? '' : 'p-6'} ${className}`}> <div id={id} className={`flex-1 ${noPadding ? '' : 'p-8'} ${className}`}>
{children} {children}
</div> </div>
); );

View File

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

View File

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