gatsby-core-theme 30.0.3 → 30.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [30.0.4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.3...v30.0.4) (2023-10-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Code Refactoring
|
|
5
|
+
|
|
6
|
+
* added svg opacity for pagination ([364c734](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/364c734702c4c721aa098ab1360b7863cf9f2cd1))
|
|
7
|
+
* responsive styles to pagination ([f08e99d](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f08e99d72936de3199d05a5785e53fc6962172de))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
* Merge branch 'tm-3633-pagination' into 'master' ([41bd33f](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/41bd33fc4158af689d7fa5a9bb401b9fce31f880))
|
|
11
|
+
|
|
1
12
|
## [30.0.3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.2...v30.0.3) (2023-09-28)
|
|
2
13
|
|
|
3
14
|
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
height: calc(var(--pagination-height, 4rem) - 1rem);
|
|
10
10
|
background-color: var(--pagination-background-color, #eeebe5);
|
|
11
11
|
|
|
12
|
-
@include min(mobile
|
|
12
|
+
@include min(mobile) {
|
|
13
13
|
width: var(--pagination-width, 4rem);
|
|
14
14
|
height: var(--pagination-height, 4rem);
|
|
15
15
|
font-size: var(--pagination-font-size, 1.6rem);
|
|
@@ -52,11 +52,19 @@
|
|
|
52
52
|
background-color: var(--pagination-inactive-background-color, var(--pagination-background-color, #eeebe5));
|
|
53
53
|
@extend .padd;
|
|
54
54
|
|
|
55
|
+
> svg {
|
|
56
|
+
opacity: var(--pagination-inactive-opacity, 1);
|
|
57
|
+
}
|
|
58
|
+
|
|
55
59
|
&.isActive {
|
|
56
60
|
color: var(--pagination-active-color, #2e3337);
|
|
57
61
|
fill: var(--pagination-active-color, #2e3337);
|
|
58
62
|
background-color: var(--pagination-background-color, #eeebe5);
|
|
59
63
|
cursor: pointer;
|
|
64
|
+
|
|
65
|
+
> svg {
|
|
66
|
+
opacity: 1;
|
|
67
|
+
}
|
|
60
68
|
}
|
|
61
69
|
}
|
|
62
70
|
}
|