Skip to content

Commit 8cdd366

Browse files
committed
fix a minor padding issue on large screens
1 parent ad39ea0 commit 8cdd366

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/assets/App.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ Producthunt item
10851085
/* XX-Large devices (larger desktops, 1400px and up)*/
10861086
@media only screen and (min-width: 1400px) {
10871087
.block {
1088-
width: calc(96vw / min(4, var(--max-visible-cards)));
1088+
width: calc(95vw / min(4, var(--max-visible-cards)));
10891089
}
10901090
}
10911091

@@ -1097,7 +1097,7 @@ Producthunt item
10971097
}
10981098
.block {
10991099
width: calc(
1100-
(1800px - 12px * min(5, var(--max-visible-cards))) / min(5, var(--max-visible-cards))
1100+
(1800px - 14px * min(5, var(--max-visible-cards))) / min(5, var(--max-visible-cards))
11011101
);
11021102
}
11031103
}

0 commit comments

Comments
 (0)