Skip to content

Commit

Permalink
feat: balance editor sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
fspoettel committed Jun 26, 2024
1 parent 55c712c commit 36f1e94
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/list-card/list-card.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,6 @@
}

.listcard.investigator {
--card-padding-y: 0.25rem;
--card-padding-y: 0.375rem;
--card-image-height: 2.5rem;
}
2 changes: 1 addition & 1 deletion src/components/ui/tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ type TriggerProps = TabsTriggerProps & {
export function TabsTrigger({ children, className, ...rest }: TriggerProps) {
return (
<Trigger {...rest} asChild>
<Button className={clsx(css["trigger"], className)} size="full">
<Button className={clsx(css["trigger"], className)} size="sm">
{children}
</Button>
</Trigger>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/deck-edit/editor/editor.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}

& > * + * {
margin-top: 0.5rem;
margin-top: 0.375rem;
}
}

Expand All @@ -32,7 +32,7 @@
}

& > * + * {
margin-top: 0.5rem;
margin-top: 0.375rem;
}
}

Expand Down

0 comments on commit 36f1e94

Please sign in to comment.