Skip to content

Commit

Permalink
Make room for the padding on li elements.
Browse files Browse the repository at this point in the history
  • Loading branch information
flackr committed Jul 11, 2024
1 parent 6a82328 commit 0b7cf02
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/carousel/fullpage/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
list-style-type: none;
display: inline-block;
position: relative;
height: 100cqh;
height: calc(100cqh - 20px);
box-sizing: border-box;
contain: size;

Expand Down
2 changes: 1 addition & 1 deletion examples/carousel/image/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
display: inline-block;
position: relative;
aspect-ratio: 2 / 3;
height: 100cqh;
height: calc(100cqh - 20px);
box-sizing: border-box;
contain: size;

Expand Down
2 changes: 1 addition & 1 deletion examples/carousel/thumbnails/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
display: inline-block;
position: relative;
aspect-ratio: 2 / 3;
height: 100cqh;
height: calc(100cqh - 20px);
box-sizing: border-box;
contain: size;

Expand Down

0 comments on commit 0b7cf02

Please sign in to comment.