@automattic/jetpack-components 0.66.0 → 0.66.1
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
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
### This is a list detailing changes for the Jetpack RNA Components package releases.
|
|
4
4
|
|
|
5
|
+
## [0.66.1] - 2025-02-11
|
|
6
|
+
### Changed
|
|
7
|
+
- Internal updates.
|
|
8
|
+
|
|
5
9
|
## [0.66.0] - 2025-02-05
|
|
6
10
|
### Added
|
|
7
11
|
- jetpack-components: Export the getRedirectUrl function with subpath [#41078]
|
|
@@ -1282,6 +1286,7 @@
|
|
|
1282
1286
|
### Changed
|
|
1283
1287
|
- Update node version requirement to 14.16.1
|
|
1284
1288
|
|
|
1289
|
+
[0.66.1]: https://github.com/Automattic/jetpack-components/compare/0.66.0...0.66.1
|
|
1285
1290
|
[0.66.0]: https://github.com/Automattic/jetpack-components/compare/0.65.5...0.66.0
|
|
1286
1291
|
[0.65.5]: https://github.com/Automattic/jetpack-components/compare/0.65.4...0.65.5
|
|
1287
1292
|
[0.65.4]: https://github.com/Automattic/jetpack-components/compare/0.65.3...0.65.4
|
|
@@ -19,13 +19,14 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
.close-button {
|
|
22
|
-
|
|
23
|
-
height: calc( var( --spacing-base ) * 3 );
|
|
24
|
-
|
|
22
|
+
padding: 0;
|
|
25
23
|
background-color: transparent;
|
|
26
24
|
border: none;
|
|
27
25
|
cursor: pointer;
|
|
28
26
|
outline: none;
|
|
27
|
+
svg {
|
|
28
|
+
display: block;
|
|
29
|
+
}
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
// Mobile layout differences.
|