Skip to content

Commit

Permalink
fix(dashboard): changelog cards position
Browse files Browse the repository at this point in the history
  • Loading branch information
scopsy committed Dec 26, 2024
1 parent 2a09523 commit 767328b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const CONSTANTS = {
CARD_OFFSET: 10,
SCALE_FACTOR: 0.06,
MAX_DISMISSED_IDS: 15,
MONTHS_TO_SHOW: 2,
MONTHS_TO_SHOW: 12,
} as const;

export function ChangelogStack() {
Expand Down Expand Up @@ -95,8 +95,8 @@ export function ChangelogStack() {
}

return (
<div className="absolute bottom-10 w-full">
<div className="m-full relative mb-4 h-[190px]">
<div className="mb-2 w-full">
<div className="m-full relative h-[175px]">
{changelogs.map((changelog, index) => (
<ChangelogCard
key={changelog.id}
Expand Down

0 comments on commit 767328b

Please sign in to comment.