@kitconcept/volto-light-theme 6.0.0-alpha.10 → 6.0.0-alpha.11
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 +4 -12
- package/CHANGELOG.md +7 -0
- package/README.md +4 -1
- package/package.json +1 -1
- package/src/theme/_footer.scss +5 -1
- package/src/theme/_header.scss +11 -0
package/.changelog.draft
CHANGED
|
@@ -1,16 +1,8 @@
|
|
|
1
|
-
## 6.0.0-alpha.
|
|
1
|
+
## 6.0.0-alpha.11 (2025-01-31)
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### Feature
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
|
|
7
|
-
### Bugfix
|
|
8
|
-
|
|
9
|
-
- Removed the non-breaking space from the external URL icon, removing the strange underline. @Tishasoumya-02 [#438](https://github.com/kitconcept/volto-light-theme/pull/438)
|
|
10
|
-
- Improve usability of the theme color picker widget. Fix error when removing a logo. @sneridagh [#455](https://github.com/kitconcept/volto-light-theme/pull/455)
|
|
11
|
-
|
|
12
|
-
### Internal
|
|
13
|
-
|
|
14
|
-
- Update to latest Volto 18.4.0. @sneridagh [#455](https://github.com/kitconcept/volto-light-theme/pull/455)
|
|
5
|
+
- Added inner and outter logo container width and constraints. @sneridagh [#458](https://github.com/kitconcept/volto-light-theme/pull/458)
|
|
6
|
+
- Constrain logo proportions to 200x80. @sneridagh [#461](https://github.com/kitconcept/volto-light-theme/pull/461)
|
|
15
7
|
|
|
16
8
|
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,13 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 6.0.0-alpha.11 (2025-01-31)
|
|
12
|
+
|
|
13
|
+
### Feature
|
|
14
|
+
|
|
15
|
+
- Added inner and outter logo container width and constraints. @sneridagh [#458](https://github.com/kitconcept/volto-light-theme/pull/458)
|
|
16
|
+
- Constrain logo proportions to 200x80. @sneridagh [#461](https://github.com/kitconcept/volto-light-theme/pull/461)
|
|
17
|
+
|
|
11
18
|
## 6.0.0-alpha.10 (2025-01-07)
|
|
12
19
|
|
|
13
20
|
### Breaking
|
package/README.md
CHANGED
|
@@ -5,7 +5,10 @@
|
|
|
5
5
|
[](https://github.com/kitconcept/volto-light-theme/actions)
|
|
6
6
|
[](https://github.com/kitconcept/volto-light-theme/actions)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
<picture>
|
|
9
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://kitconcept.com/kitconcept-white.svg">
|
|
10
|
+
<img width="300" alt="kitconcept, GmbH" src="https://kitconcept.com/kitconcept-black.svg">
|
|
11
|
+
</picture>
|
|
9
12
|
|
|
10
13
|
## Vision
|
|
11
14
|
|
package/package.json
CHANGED
package/src/theme/_footer.scss
CHANGED
|
@@ -11,9 +11,13 @@
|
|
|
11
11
|
margin-top: 0;
|
|
12
12
|
margin-bottom: $spacing-medium;
|
|
13
13
|
gap: 60px 20px;
|
|
14
|
-
grid-template-columns: repeat(auto-fit, minmax(
|
|
14
|
+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
15
15
|
list-style: none;
|
|
16
16
|
|
|
17
|
+
&.s {
|
|
18
|
+
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
19
|
+
}
|
|
20
|
+
|
|
17
21
|
&.l img {
|
|
18
22
|
max-width: min(100%, 240px);
|
|
19
23
|
max-height: 165px;
|
package/src/theme/_header.scss
CHANGED