Skip to content

Commit

Permalink
fix: fix roadmap styling
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhojang6 committed Mar 21, 2024
1 parent a8cef07 commit 06e3b96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ export const Roadmap: React.FC<RoadmapProps> = ({
return 'solid'
}

return 'dashed'
return 'solid'
}

const getCurrentQuarter = () => {
const month = new Date().getMonth()
return 'Q' + Math.ceil((month + 1) / 3)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@use '../../../css/lsd';

.mdx-timeline-item {
width: 236px;
width: 193px;
min-height: 306px;
justify-content: space-between;
gap: 1rem;
Expand Down

0 comments on commit 06e3b96

Please sign in to comment.