Compare commits

..

No commits in common. "ai-dev" and "master" have entirely different histories.

6 changed files with 7 additions and 12 deletions

5
.gitignore vendored
View File

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

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
{}

View File

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

View File

@ -52,7 +52,7 @@ const FormField = ({ icons = [], ...props }: Props) => {
].join(' ');
return (
<div className='mb-8 last:mb-0'>
<div className='mb-6 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-8 ${containerMaxW}`}>{children}</section>;
return <section className={`p-6 ${containerMaxW}`}>{children}</section>;
}