@kitconcept/volto-light-theme 8.0.0-alpha.23 → 8.0.0-alpha.24
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.draft +3 -4
- package/CHANGELOG.md +6 -0
- package/package.json +3 -3
- package/src/theme/_header.scss +4 -1
package/.changelog.draft
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
## 8.0.0-alpha.
|
|
1
|
+
## 8.0.0-alpha.24 (2026-04-30)
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### Bugfix
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
Forces `react-aria-components` from the catalog in Volto so projects using it have to be updated to at least this Volto version. @sneridagh
|
|
5
|
+
- Remove the padding added by header-wrapper for search-wrapper and center ther search. @Tishasoumya-02 [#846](https://github.com/kitconcept/volto-light-theme/pull/846)
|
|
7
6
|
|
|
8
7
|
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,12 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 8.0.0-alpha.24 (2026-04-30)
|
|
12
|
+
|
|
13
|
+
### Bugfix
|
|
14
|
+
|
|
15
|
+
- Remove the padding added by header-wrapper for search-wrapper and center ther search. @Tishasoumya-02 [#846](https://github.com/kitconcept/volto-light-theme/pull/846)
|
|
16
|
+
|
|
11
17
|
## 8.0.0-alpha.23 (2026-04-29)
|
|
12
18
|
|
|
13
19
|
### Breaking
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitconcept/volto-light-theme",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.24",
|
|
4
4
|
"description": "Volto Light Theme by kitconcept",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"react-aria-components": "^1.17.0",
|
|
60
60
|
"react-colorful": "^5.6.1",
|
|
61
61
|
"uuid": "^11.0.0",
|
|
62
|
-
"@
|
|
63
|
-
"@
|
|
62
|
+
"@plone/components": "^4.0.0-alpha.7",
|
|
63
|
+
"@kitconcept/volto-bm3-compat": "^1.0.0-alpha.1"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
66
|
"classnames": "^2.5.1",
|
package/src/theme/_header.scss
CHANGED
|
@@ -158,6 +158,10 @@
|
|
|
158
158
|
height 600ms ease-in-out;
|
|
159
159
|
transition-property: top, height;
|
|
160
160
|
|
|
161
|
+
@media only screen and (max-width: ($large-monitor-width + 36px)) {
|
|
162
|
+
left: -1em;
|
|
163
|
+
width: calc(100% + 2em);
|
|
164
|
+
}
|
|
161
165
|
&.active {
|
|
162
166
|
top: 0;
|
|
163
167
|
height: 188px;
|
|
@@ -184,7 +188,6 @@
|
|
|
184
188
|
padding-bottom: 0.5rem;
|
|
185
189
|
border-bottom: 2px solid $black;
|
|
186
190
|
border-left: none;
|
|
187
|
-
margin-left: 12.6rem;
|
|
188
191
|
|
|
189
192
|
@media only screen and (max-width: $tablet-breakpoint) {
|
|
190
193
|
padding-top: 2rem;
|