padding adjustments?
This commit is contained in:
parent
9f4669aa75
commit
a9114d1eb9
5
.gitignore
vendored
5
.gitignore
vendored
@ -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
1
frontend/json/runtimeError.json
Normal file
1
frontend/json/runtimeError.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{}
|
||||||
@ -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>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -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}
|
||||||
|
|||||||
@ -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>;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user