Skip to content

Commit

Permalink
minor margin adaptations
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieusieben committed Mar 5, 2025
1 parent bea4e31 commit 283504a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function FormCard({
...props
}: FormCardProps) {
return (
<form {...props} inert={inert} className="flex flex-col space-y-4 py-4">
<form {...props} inert={inert} className="flex flex-col space-y-4">
{prepend && <div key="prepend">{prepend}</div>}

<div key="children" className="space-y-4">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export function WizardCard<TDone extends DoneFn>({

return (
<div className={clsx(className, 'flex flex-col')} {...props}>
<p className="mt-4 text-slate-500 dark:text-slate-400">
<p className="text-slate-500 dark:text-slate-400">
<Trans>
Step {currentPosition} of {count}
</Trans>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export function LayoutTitlePage({
<LocaleSelector key="localeSelector" className="m-1 md:m-2" />
</div>

<main className="w-full px-6 md:max-w-3xl md:px-12">{children}</main>
<main className="w-full p-6 md:max-w-3xl md:px-12">{children}</main>
</div>
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function LayoutWelcome({
>
{title && <title>{title}</title>}

<main className="w-full overflow-hidden flex-grow flex flex-col items-center justify-center">
<main className="w-full overflow-hidden flex-grow flex flex-col items-center justify-center p-6">
{logo && (
<img
src={logo}
Expand All @@ -54,7 +54,7 @@ export function LayoutWelcome({
{children}
</main>

<nav className="w-full overflow-hidden mt-4 border-t border-t-slate-200 dark:border-t-slate-700 flex flex-wrap justify-center content-center">
<nav className="w-full overflow-hidden border-t border-t-slate-200 dark:border-t-slate-700 flex flex-wrap justify-center content-center">
{links?.map((link, i) => (
<a
role="link"
Expand Down

0 comments on commit 283504a

Please sign in to comment.