Skip to content

Commit

Permalink
fix: 🐛 Use correct variable for height calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
phun-ky committed Aug 23, 2024
1 parent a8633a2 commit d31fbba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/grid/styles/index.styl
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ basePinGrid()
left -32px
top 100%;
width 32px
height calc(var(--ph-speccer-grid-gap) + 2px)
height calc(var(--ph-speccer-grid-row-gap) + 2px)
border-top-left-radius 50%
border-bottom-left-radius 50%

Expand All @@ -89,7 +89,7 @@ basePinGrid()
left -32px
top 100%;
width 32px
height calc(var(--ph-speccer-grid-gap) + 2px)
height calc(var(--ph-speccer-grid-row-gap) + 2px)
border-top-left-radius 50%
border-bottom-left-radius 50%

Expand Down

0 comments on commit d31fbba

Please sign in to comment.