@eeacms/volto-eea-website-theme 0.6.6 → 0.6.7
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 +10 -2
- package/package.json +1 -1
- package/src/config.js +3 -3
package/CHANGELOG.md
CHANGED
@@ -4,10 +4,18 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
4
4
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
6
6
|
|
7
|
+
#### [0.6.7](https://github.com/eea/volto-eea-website-theme/compare/0.6.6...0.6.7)
|
8
|
+
|
9
|
+
- change(footer): updated managed by grid sizes from footer.stories #37 [`63b86be`](https://github.com/eea/volto-eea-website-theme/commit/63b86becdf5a501b133e3b4ff05b1ab0e6281f12)
|
10
|
+
- change(footer): updated managed by grid sizes as se [`6be36fa`](https://github.com/eea/volto-eea-website-theme/commit/6be36fa6e8d8a2762fce65b71bb0e0c795a050a2)
|
11
|
+
|
7
12
|
#### [0.6.6](https://github.com/eea/volto-eea-website-theme/compare/0.6.5...0.6.6)
|
8
13
|
|
9
|
-
|
10
|
-
|
14
|
+
> 8 June 2022
|
15
|
+
|
16
|
+
- condition config of accordion only if found to avoid error [`#36`](https://github.com/eea/volto-eea-website-theme/pull/36)
|
17
|
+
- Add customization for volto-tabs-block [`#35`](https://github.com/eea/volto-eea-website-theme/pull/35)
|
18
|
+
- change(footer): update footer implementation [`#34`](https://github.com/eea/volto-eea-website-theme/pull/34)
|
11
19
|
- change(footer): update footer implementation to use subfooter section #33 [`e4cb3c0`](https://github.com/eea/volto-eea-website-theme/commit/e4cb3c042414ba5811924b40c532738da978fdbd)
|
12
20
|
- change(footer): update footer implementation to use latest changes to the subfooter component [`efa23fe`](https://github.com/eea/volto-eea-website-theme/commit/efa23fecee0786c3d9a254c8115b3f28a8be5302)
|
13
21
|
|
package/package.json
CHANGED
package/src/config.js
CHANGED
@@ -95,7 +95,7 @@ export const footerOpts = {
|
|
95
95
|
alt: 'EEA Logo',
|
96
96
|
className: 'site logo',
|
97
97
|
columnSize: {
|
98
|
-
mobile:
|
98
|
+
mobile: 6,
|
99
99
|
tablet: 12,
|
100
100
|
computer: 5,
|
101
101
|
},
|
@@ -106,9 +106,9 @@ export const footerOpts = {
|
|
106
106
|
alt: 'EIONET Logo',
|
107
107
|
className: 'eionet logo',
|
108
108
|
columnSize: {
|
109
|
-
mobile:
|
109
|
+
mobile: 6,
|
110
110
|
tablet: 12,
|
111
|
-
computer:
|
111
|
+
computer: 7,
|
112
112
|
},
|
113
113
|
},
|
114
114
|
],
|