Skip to content

Commit

Permalink
fix: project ticket grid too much middle space
Browse files Browse the repository at this point in the history
Designers do not intend nor like big gap. It's been around since Portal.

But it's been so difficult to fix… until  `project-ticket-grid` came.

I hadn't noticed the fix was possible until just now.
  • Loading branch information
wesleyboar committed Sep 26, 2023
1 parent dca5566 commit 62ccdca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/tup-ui/src/pages/Dashboard/Dashboard.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
display: grid;
gap: 25px;
grid-template-columns: 1fr;
grid-template-rows: 1fr 1fr;
grid-template-areas:
grid-template-rows: auto 1fr;
grid-template-areas:
"projects"
"tickets";

Expand Down

0 comments on commit 62ccdca

Please sign in to comment.