Skip to content

Commit c1a0167

Browse files
committed
fix: add box-sizing to .pagination-content for consistent styling
1 parent 7ee5600 commit c1a0167

9 files changed

Lines changed: 16515 additions & 10953 deletions

File tree

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,16 @@ dist-ssr
2525

2626

2727
stats.html
28+
29+
30+
# Yarn 4 ignore
31+
.yarn/*
32+
!.yarn/patches
33+
!.yarn/plugins
34+
!.yarn/releases
35+
!.yarn/sdks
36+
!.yarn/versions
37+
38+
# Not ignore
39+
!install-state.gz
40+
!yarn.lock

.yarn/install-state.gz

1020 KB
Binary file not shown.

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

example/.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,17 @@ storybook-static
2323
*.njsproj
2424
*.sln
2525
*.sw?
26+
27+
28+
29+
# Yarn 4 ignore
30+
.yarn/*
31+
!.yarn/patches
32+
!.yarn/plugins
33+
!.yarn/releases
34+
!.yarn/sdks
35+
!.yarn/versions
36+
37+
# Not ignore
38+
!install-state.gz
39+
!yarn.lock

example/.yarn/install-state.gz

491 KB
Binary file not shown.

example/yarn.lock

Lines changed: 5570 additions & 3361 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"carousel",
1111
"swiper"
1212
],
13-
"private": false,
1413
"license": "MIT",
1514
"repository": {
1615
"type": "git",

src/styles.module.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@
140140
}
141141

142142

143-
.pagination-content{}
143+
.pagination-content{
144+
box-sizing: border-box;
145+
}
144146

145147

146148

yarn.lock

Lines changed: 10914 additions & 7590 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)