@kitconcept/volto-light-theme 3.3.1 → 3.3.2

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,7 +1,8 @@
1
- ## 3.3.1 (2024-05-30)
1
+ ## 3.3.2 (2024-05-31)
2
2
 
3
3
  ### Bugfix
4
4
 
5
- - Fix image grid clossure issues in inlined JSX method when selecting an image after uploading another image in another grid element @sneridagh [#389](https://github.com/kitconcept/volto-light-theme/pull/389)
5
+ - Add top padding to login page @danalvrz [#387](https://github.com/kitconcept/volto-light-theme/pull/387)
6
+ - Add default width mixin to content creation Forms @danalvrz [#388](https://github.com/kitconcept/volto-light-theme/pull/388)
6
7
 
7
8
 
package/CHANGELOG.md CHANGED
@@ -8,6 +8,13 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 3.3.2 (2024-05-31)
12
+
13
+ ### Bugfix
14
+
15
+ - Add top padding to login page @danalvrz [#387](https://github.com/kitconcept/volto-light-theme/pull/387)
16
+ - Add default width mixin to content creation Forms @danalvrz [#388](https://github.com/kitconcept/volto-light-theme/pull/388)
17
+
11
18
  ## 3.3.1 (2024-05-30)
12
19
 
13
20
  ### Bugfix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitconcept/volto-light-theme",
3
- "version": "3.3.1",
3
+ "version": "3.3.2",
4
4
  "description": "Volto Light Theme by kitconcept",
5
5
  "main": "src/index.js",
6
6
  "types": "src/types/index.d.ts",
@@ -222,3 +222,8 @@
222
222
  .field-wrapper-changeNote {
223
223
  display: none;
224
224
  }
225
+
226
+ // Login page
227
+ .content-area #page-login {
228
+ padding-top: $spacing-large;
229
+ }
@@ -413,4 +413,15 @@ body.has-toolbar.has-sidebar .block .ui.basic.button.delete-button {
413
413
  }
414
414
  }
415
415
 
416
+ // Create content page form
417
+ #page-add,
418
+ #page-edit {
419
+ > .container {
420
+ > .ui.form {
421
+ margin-top: $spacing-small;
422
+ @include default-container-width();
423
+ }
424
+ }
425
+ }
426
+
416
427
  @import 'bgcolor-blocks-layout';