@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 CHANGED
@@ -1,16 +1,8 @@
1
- ## 6.0.0-alpha.10 (2025-01-07)
1
+ ## 6.0.0-alpha.11 (2025-01-31)
2
2
 
3
- ### Breaking
3
+ ### Feature
4
4
 
5
- - Rename the name of the widget from `themingColorPicker` to `themeColorPicker`. @sneridagh [#455](https://github.com/kitconcept/volto-light-theme/pull/455)
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
  [![Build Status](https://github.com/kitconcept/volto-light-theme/actions/workflows/unit.yml/badge.svg)](https://github.com/kitconcept/volto-light-theme/actions)
6
6
  [![Build Status](https://github.com/kitconcept/volto-light-theme/actions/workflows/acceptance.yml/badge.svg)](https://github.com/kitconcept/volto-light-theme/actions)
7
7
 
8
- ![kitconcept GmbH](https://raw.githubusercontent.com/kitconcept/volto-blocks/master/kitconcept.png)
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitconcept/volto-light-theme",
3
- "version": "6.0.0-alpha.10",
3
+ "version": "6.0.0-alpha.11",
4
4
  "description": "Volto Light Theme by kitconcept",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/types/index.d.ts",
@@ -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(175px, 1fr));
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;
@@ -11,8 +11,19 @@
11
11
  padding-bottom: 35px;
12
12
 
13
13
  .logo {
14
+ max-width: 200px;
15
+ max-height: 80px;
14
16
  flex: 1 1 0;
15
17
  align-self: center;
18
+
19
+ a {
20
+ display: block;
21
+
22
+ img {
23
+ width: 100%;
24
+ height: auto;
25
+ }
26
+ }
16
27
  }
17
28
 
18
29
  .navigation {