@eeacms/volto-eea-design-system 0.3.1 → 0.4.0

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.
Files changed (32) hide show
  1. package/CHANGELOG.md +65 -0
  2. package/package.json +3 -2
  3. package/src/semantic.less +5 -1
  4. package/src/ui/Card/Card.stories.jsx +185 -5
  5. package/src/ui/Quote/Quote.jsx +1 -1
  6. package/src/ui/Quote/Quote.stories.jsx +21 -29
  7. package/theme/themes/eea/assets/images/Svg/data-analytics.svg +14 -0
  8. package/theme/themes/eea/assets/images/Svg/globe-eco.svg +3 -0
  9. package/theme/themes/eea/assets/images/Svg/knowledge.svg +3 -0
  10. package/theme/themes/eea/assets/images/Svg/network.svg +3 -0
  11. package/theme/themes/eea/assets/images/Svg/sustainable.svg +38 -0
  12. package/theme/themes/eea/collections/table.overrides +1 -1
  13. package/theme/themes/eea/definitions/views/item.less +475 -0
  14. package/theme/themes/eea/elements/label.overrides +111 -3
  15. package/theme/themes/eea/elements/label.variables +17 -3
  16. package/theme/themes/eea/extras/quote.less +3 -3
  17. package/theme/themes/eea/extras/quote.variables +4 -4
  18. package/theme/themes/eea/globals/site.overrides +2 -0
  19. package/theme/themes/eea/globals/site.variables +25 -6
  20. package/theme/themes/eea/globals/utilities.less +31 -0
  21. package/theme/themes/eea/tokens/borders.less +14 -0
  22. package/theme/themes/eea/tokens/colors.less +63 -0
  23. package/theme/themes/eea/tokens/fonts.less +2 -2
  24. package/theme/themes/eea/tokens/shadows.less +41 -0
  25. package/theme/themes/eea/tokens/shapes.less +6 -0
  26. package/theme/themes/eea/tokens/sizes.less +106 -17
  27. package/theme/themes/eea/tokens/tokens.less +5 -0
  28. package/theme/themes/eea/tokens/z-index.less +12 -0
  29. package/theme/themes/eea/views/card.overrides +108 -0
  30. package/theme/themes/eea/views/card.variables +29 -1
  31. package/theme/themes/eea/views/item.overrides +37 -0
  32. package/theme/themes/eea/views/item.variables +12 -3
@@ -0,0 +1,475 @@
1
+ /*!
2
+ * # Semantic UI - Item
3
+ * http://github.com/semantic-org/semantic-ui/
4
+ *
5
+ *
6
+ * Released under the MIT license
7
+ * http://opensource.org/licenses/MIT
8
+ *
9
+ */
10
+
11
+ /*******************************
12
+ Theme
13
+ *******************************/
14
+
15
+ @type : 'view';
16
+ @element : 'item';
17
+
18
+ @import (multiple) '../../theme.config';
19
+
20
+ /*******************************
21
+ Standard
22
+ *******************************/
23
+
24
+ /*--------------
25
+ Item
26
+ ---------------*/
27
+
28
+ .ui.items > .item {
29
+ display: @display;
30
+ margin: @itemSpacing 0em;
31
+ width: @width;
32
+ min-height: @minHeight;
33
+ background: @background;
34
+ padding: @padding;
35
+
36
+ border: @border;
37
+ border-radius: @borderRadius;
38
+ box-shadow: @boxShadow;
39
+ transition: @transition;
40
+ z-index: @zIndex;
41
+ }
42
+ .ui.items > .item a {
43
+ cursor: pointer;
44
+ }
45
+
46
+ /*--------------
47
+ Items
48
+ ---------------*/
49
+
50
+ .ui.items {
51
+ margin: @groupMargin;
52
+ }
53
+
54
+ .ui.items:first-child {
55
+ margin-top: 0em !important;
56
+ }
57
+ .ui.items:last-child {
58
+ margin-bottom: 0em !important;
59
+ }
60
+
61
+ /*--------------
62
+ Item
63
+ ---------------*/
64
+
65
+ .ui.items > .item:after {
66
+ display: block;
67
+ content: ' ';
68
+ height: 0px;
69
+ clear: both;
70
+ overflow: hidden;
71
+ visibility: hidden;
72
+ }
73
+ .ui.items > .item:first-child {
74
+ margin-top: 0em;
75
+ }
76
+ .ui.items > .item:last-child {
77
+ margin-bottom: 0em;
78
+ }
79
+
80
+
81
+
82
+ /*--------------
83
+ Images
84
+ ---------------*/
85
+
86
+ .ui.items > .item > .image {
87
+ position: relative;
88
+ flex: 0 0 auto;
89
+ display: @imageDisplay;
90
+ float: @imageFloat;
91
+ margin: @imageMargin;
92
+ padding: @imagePadding;
93
+ max-height: @imageMaxHeight;
94
+ align-self: @imageVerticalAlign;
95
+ }
96
+ .ui.items > .item > .image > img {
97
+ display: block;
98
+ width: 100%;
99
+ height: auto;
100
+ border-radius: @imageBorderRadius;
101
+ border: @imageBorder;
102
+ }
103
+
104
+ .ui.items > .item > .image:only-child > img {
105
+ border-radius: @borderRadius;
106
+ }
107
+
108
+
109
+ /*--------------
110
+ Content
111
+ ---------------*/
112
+
113
+ .ui.items > .item > .content {
114
+ display: block;
115
+ flex: 1 1 auto;
116
+ background: @contentBackground;
117
+ margin: @contentMargin;
118
+ padding: @contentPadding;
119
+ box-shadow: @contentBoxShadow;
120
+ font-size: @contentFontSize;
121
+ border: @contentBorder;
122
+ border-radius: @contentBorderRadius;
123
+ }
124
+ .ui.items > .item > .content:after {
125
+ display: block;
126
+ content: ' ';
127
+ height: 0px;
128
+ clear: both;
129
+ overflow: hidden;
130
+ visibility: hidden;
131
+ }
132
+
133
+ .ui.items > .item > .image + .content {
134
+ min-width: 0;
135
+ width: @contentWidth;
136
+ display: @contentDisplay;
137
+ margin-left: @contentOffset;
138
+ align-self: @contentVerticalAlign;
139
+ padding-left: @contentImageDistance;
140
+ }
141
+
142
+ .ui.items > .item > .content > .header {
143
+ display: inline-block;
144
+ margin: @headerMargin;
145
+ font-family: @headerFont;
146
+ font-weight: @headerFontWeight;
147
+ color: @headerColor;
148
+ }
149
+ /* Default Header Size */
150
+ .ui.items > .item > .content > .header:not(.ui) {
151
+ font-size: @headerFontSize;
152
+ }
153
+
154
+ /*--------------
155
+ Floated
156
+ ---------------*/
157
+
158
+ .ui.items > .item [class*="left floated"] {
159
+ float: left;
160
+ }
161
+ .ui.items > .item [class*="right floated"] {
162
+ float: right;
163
+ }
164
+
165
+
166
+ /*--------------
167
+ Content Image
168
+ ---------------*/
169
+
170
+ .ui.items > .item .content img {
171
+ align-self: @contentImageVerticalAlign;
172
+ width: @contentImageWidth;
173
+ }
174
+ .ui.items > .item img.avatar,
175
+ .ui.items > .item .avatar img {
176
+ width: @avatarSize;
177
+ height: @avatarSize;
178
+ border-radius: @avatarBorderRadius;
179
+ }
180
+
181
+
182
+ /*--------------
183
+ Description
184
+ ---------------*/
185
+
186
+ .ui.items > .item > .content > .description {
187
+ margin-top: @descriptionDistance;
188
+ max-width: @descriptionMaxWidth;
189
+ font-size: @descriptionFontSize;
190
+ line-height: @descriptionLineHeight;
191
+ color: @descriptionColor;
192
+ }
193
+
194
+ /*--------------
195
+ Paragraph
196
+ ---------------*/
197
+
198
+ .ui.items > .item > .content p {
199
+ margin: 0em 0em @paragraphDistance;
200
+ }
201
+ .ui.items > .item > .content p:last-child {
202
+ margin-bottom: 0em;
203
+ }
204
+
205
+ /*--------------
206
+ Meta
207
+ ---------------*/
208
+
209
+ .ui.items > .item .meta {
210
+ margin: @metaMargin;
211
+ font-size: @metaFontSize;
212
+ line-height: @metaLineHeight;
213
+ color: @metaColor;
214
+ }
215
+ .ui.items > .item .meta * {
216
+ margin-right: @metaSpacing;
217
+ }
218
+ .ui.items > .item .meta :last-child {
219
+ margin-right: 0em;
220
+ }
221
+
222
+ .ui.items > .item .meta [class*="right floated"] {
223
+ margin-right: 0em;
224
+ margin-left: @metaSpacing;
225
+ }
226
+
227
+ /*--------------
228
+ Links
229
+ ---------------*/
230
+
231
+ /* Generic */
232
+ .ui.items > .item > .content a:not(.ui) {
233
+ color: @contentLinkColor;
234
+ transition: @contentLinkTransition;
235
+ }
236
+ .ui.items > .item > .content a:not(.ui):hover {
237
+ color: @contentLinkHoverColor;
238
+ }
239
+
240
+ /* Header */
241
+ .ui.items > .item > .content > a.header {
242
+ color: @headerLinkColor;
243
+ }
244
+ .ui.items > .item > .content > a.header:hover {
245
+ color: @headerLinkHoverColor;
246
+ }
247
+
248
+ /* Meta */
249
+ .ui.items > .item .meta > a:not(.ui) {
250
+ color: @metaLinkColor;
251
+ }
252
+ .ui.items > .item .meta > a:not(.ui):hover {
253
+ color: @metaLinkHoverColor;
254
+ }
255
+
256
+
257
+
258
+ /*--------------
259
+ Labels
260
+ ---------------*/
261
+
262
+ /*-----Star----- */
263
+
264
+ /* Icon */
265
+ .ui.items > .item > .content .favorite.icon {
266
+ cursor: pointer;
267
+ opacity: @actionOpacity;
268
+ transition: @actionTransition;
269
+ }
270
+ .ui.items > .item > .content .favorite.icon:hover {
271
+ opacity: @actionHoverOpacity;
272
+ color: @favoriteColor;
273
+ }
274
+ .ui.items > .item > .content .active.favorite.icon {
275
+ color: @favoriteActiveColor;
276
+ }
277
+
278
+ /*-----Like----- */
279
+
280
+ /* Icon */
281
+ .ui.items > .item > .content .like.icon {
282
+ cursor: pointer;
283
+ opacity: @actionOpacity;
284
+ transition: @actionTransition;
285
+ }
286
+ .ui.items > .item > .content .like.icon:hover {
287
+ opacity: @actionHoverOpacity;
288
+ color: @likeColor;
289
+ }
290
+ .ui.items > .item > .content .active.like.icon {
291
+ color: @likeActiveColor;
292
+ }
293
+
294
+ /*----------------
295
+ Extra Content
296
+ -----------------*/
297
+
298
+ .ui.items > .item .extra {
299
+ display: @extraDisplay;
300
+ position: @extraPosition;
301
+ background: @extraBackground;
302
+ margin: @extraMargin;
303
+ width: @extraWidth;
304
+ padding: @extraPadding;
305
+ top: @extraTop;
306
+ left: @extraLeft;
307
+ color: @extraColor;
308
+ box-shadow: @extraBoxShadow;
309
+ transition: @extraTransition;
310
+ border-top: @extraDivider;
311
+ }
312
+ .ui.items > .item .extra > * {
313
+ margin: (@extraRowSpacing / 2) @extraHorizontalSpacing (@extraRowSpacing / 2) 0em;
314
+ }
315
+ .ui.items > .item .extra > [class*="right floated"] {
316
+ margin: (@extraRowSpacing / 2) 0em (@extraRowSpacing / 2) @extraHorizontalSpacing;
317
+ }
318
+
319
+ .ui.items > .item .extra:after {
320
+ display: block;
321
+ content: ' ';
322
+ height: 0px;
323
+ clear: both;
324
+ overflow: hidden;
325
+ visibility: hidden;
326
+ }
327
+
328
+
329
+ /*******************************
330
+ Responsive
331
+ *******************************/
332
+
333
+ /* Default Image Width */
334
+ .ui.items > .item > .image:not(.ui) {
335
+ width: @imageWidth;
336
+ }
337
+
338
+
339
+ /* Tablet Only */
340
+ @media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) {
341
+ .ui.items > .item {
342
+ margin: @tabletItemSpacing 0em;
343
+ }
344
+ .ui.items > .item > .image:not(.ui) {
345
+ width: @tabletImageWidth;
346
+ }
347
+ .ui.items > .item > .image + .content {
348
+ display: block;
349
+ padding: 0em 0em 0em @tabletContentImageDistance;
350
+ }
351
+
352
+ }
353
+
354
+ /* Mobile Only */
355
+ @media only screen and (max-width: @largestMobileScreen) {
356
+ .ui.items:not(.unstackable) > .item {
357
+ flex-direction: column;
358
+ margin: @mobileItemSpacing 0em;
359
+ }
360
+ .ui.items:not(.unstackable) > .item > .image {
361
+ display: block;
362
+ margin-left: auto;
363
+ margin-right: auto;
364
+ }
365
+ .ui.items:not(.unstackable) > .item > .image,
366
+ .ui.items:not(.unstackable) > .item > .image > img {
367
+ max-width: 100% !important;
368
+ width: @mobileImageWidth !important;
369
+ max-height: @mobileImageMaxHeight !important;
370
+ }
371
+ .ui.items:not(.unstackable) > .item > .image + .content {
372
+ display: block;
373
+ padding: @mobileContentImageDistance 0em 0em;
374
+ }
375
+ }
376
+
377
+
378
+ /*******************************
379
+ Variations
380
+ *******************************/
381
+
382
+
383
+ /*-------------------
384
+ Aligned
385
+ --------------------*/
386
+
387
+ .ui.items > .item > .image + [class*="top aligned"].content {
388
+ align-self: flex-start;
389
+ }
390
+ .ui.items > .item > .image + [class*="middle aligned"].content {
391
+ align-self: center;
392
+ }
393
+ .ui.items > .item > .image + [class*="bottom aligned"].content {
394
+ align-self: flex-end;
395
+ }
396
+
397
+
398
+ /*--------------
399
+ Relaxed
400
+ ---------------*/
401
+
402
+ .ui.relaxed.items > .item {
403
+ margin: @relaxedItemSpacing 0em;
404
+ }
405
+ .ui[class*="very relaxed"].items > .item {
406
+ margin: @veryRelaxedItemSpacing 0em;
407
+ }
408
+
409
+
410
+ /*-------------------
411
+ Divided
412
+ --------------------*/
413
+
414
+ .ui.divided.items > .item {
415
+ border-top: @dividedBorder;
416
+ margin: @dividedMargin;
417
+ padding: @dividedPadding;
418
+ }
419
+ .ui.divided.items > .item:first-child {
420
+ border-top: none;
421
+ margin-top: @dividedFirstLastMargin !important;
422
+ padding-top: @dividedFirstLastPadding !important;
423
+ }
424
+ .ui.divided.items > .item:last-child {
425
+ margin-bottom: @dividedFirstLastMargin !important;
426
+ padding-bottom: @dividedFirstLastPadding !important;
427
+ }
428
+
429
+ /* Relaxed Divided */
430
+ .ui.relaxed.divided.items > .item {
431
+ margin: 0em;
432
+ padding: @relaxedItemSpacing 0em;
433
+ }
434
+ .ui[class*="very relaxed"].divided.items > .item {
435
+ margin: 0em;
436
+ padding: @veryRelaxedItemSpacing 0em;
437
+ }
438
+
439
+
440
+ /*-------------------
441
+ Link
442
+ --------------------*/
443
+
444
+ .ui.items a.item:hover,
445
+ .ui.link.items > .item:hover {
446
+ cursor: pointer;
447
+ }
448
+
449
+ .ui.items a.item:hover .content .header,
450
+ .ui.link.items > .item:hover .content .header {
451
+ color: @headerLinkHoverColor;
452
+ }
453
+
454
+
455
+ /*--------------
456
+ Size
457
+ ---------------*/
458
+
459
+ .ui.items > .item {
460
+ font-size: @relativeMedium;
461
+ }
462
+
463
+ /*---------------
464
+ Unstackable
465
+ ----------------*/
466
+
467
+ // Removed so the image size can be defined by semantic size prop
468
+ // @media only screen and (max-width: @largestMobileScreen) {
469
+ // .ui.unstackable.items > .item > .image,
470
+ // .ui.unstackable.items > .item > .image > img {
471
+ // width: @unstackableMobileImageWidth !important;
472
+ // }
473
+ // }
474
+
475
+ .loadUIOverrides();
@@ -7,19 +7,123 @@
7
7
  line-height: @labelLineHeight;
8
8
  }
9
9
 
10
- .ui.label.medium {
10
+ .ui.low.labels .label,
11
+ .ui.low.label {
12
+ background-color: @lowImportanceBackground;
13
+ border-color: @lowImportanceBackground;
14
+ }
15
+
16
+ .ui.medium.labels .label,
17
+ .ui.medium.label {
11
18
  background-color: @mediumImportanceBackground;
19
+ border-color: @mediumImportanceBackground;
12
20
  }
13
21
 
14
- .ui.label.high {
22
+ .ui.high.labels .label,
23
+ .ui.high.label {
15
24
  background-color: @highImportanceBackground;
25
+ border-color: @highImportanceBackground;
16
26
  }
17
27
 
18
- .ui.label.highlight {
28
+ .ui.highlight.labels .label,
29
+ .ui.highlight.label {
19
30
  background-color: @highlightImportanceBackground;
31
+ border-color: @highlightImportanceBackground;
32
+ }
33
+
34
+ /* Link */
35
+ .ui.low.labels .label:hover,
36
+ a.ui.low.label:hover{
37
+ background-color: @lowImportanceHoverBackground;
38
+ border-color: @lowImportanceHoverBackground;
39
+ }
40
+
41
+ .ui.medium.labels .label:hover,
42
+ a.ui.medium.label:hover{
43
+ background-color: @mediumImportanceHoverBackground;
44
+ border-color: @mediumImportanceHoverBackground;
45
+ }
46
+
47
+ .ui.high.labels .label:hover,
48
+ a.ui.high.label:hover{
49
+ background-color: @highImportanceHoverBackground;
50
+ border-color: @highImportanceHoverBackground;
51
+ }
52
+
53
+ .ui.highlight.labels .label:hover,
54
+ a.ui.highlight.label:hover{
55
+ background-color: @highlightImportanceHoverBackground;
56
+ border-color: @highlightImportanceHoverBackground;
57
+ }
58
+
59
+ /* Ribbon */
60
+ .ui.low.ribbon.label {
61
+ border-color: @lowImportanceBackground;
62
+ }
63
+
64
+ .ui.medium.ribbon.label {
65
+ border-color: @mediumImportanceBackground;
66
+ }
67
+
68
+ .ui.high.ribbon.label {
69
+ border-color: @highImportanceBackground;
70
+ }
71
+
72
+ .ui.highlight.ribbon.label {
73
+ border-color: @highlightImportanceBackground;
74
+ }
75
+
76
+ /* Basic */
77
+ .ui.basic.low.label {
78
+ background: @white;
79
+ color: @lowImportanceBasicTextColor;
80
+ border-color: @lowImportanceBackground;
81
+ }
82
+ .ui.basic.low.labels a.label:hover,
83
+ a.ui.basic.low.label:hover {
84
+ background-color: @white;
85
+ color: @lowImportanceHoverBackground;
86
+ border-color: @lowImportanceHoverBackground;
87
+ }
88
+
89
+ .ui.basic.medium.label {
90
+ background: @white;
91
+ color: @mediumImportanceBasicTextColor;
92
+ border-color: @mediumImportanceBackground;
93
+ }
94
+ .ui.basic.medium.labels a.label:hover,
95
+ a.ui.basic.medium.label:hover {
96
+ background-color: @white;
97
+ color: @mediumImportanceHoverBackground;
98
+ border-color: @mediumImportanceHoverBackground;
99
+ }
100
+
101
+ .ui.basic.high.label {
102
+ background: @white;
103
+ color: @highImportanceBasicTextColor;
104
+ border-color: @highImportanceBackground;
105
+ }
106
+ .ui.basic.high.labels a.label:hover,
107
+ a.ui.basic.high.label:hover {
108
+ background-color: @white;
109
+ color: @highImportanceHoverBackground;
110
+ border-color: @highImportanceHoverBackground;
111
+ }
112
+
113
+ .ui.basic.highlight.label {
114
+ background: @white;
115
+ color: @highlightImportanceBasicTextColor;
116
+ border-color: @highlightImportanceBackground;
117
+ }
118
+ .ui.basic.highlight.labels a.label:hover,
119
+ a.ui.basic.highlight.label:hover {
120
+ background-color: @white;
121
+ color: @highlightImportanceHoverBackground;
122
+ border-color: @highlightImportanceHoverBackground;
20
123
  }
21
124
 
22
125
  // Custom variations and combinations in slate
126
+ .ui.label.low,
23
127
  .ui.label.medium,
24
128
  .ui.label.high,
25
129
  .ui.label.highlight {
@@ -33,6 +137,10 @@
33
137
  }
34
138
  }
35
139
 
140
+ &:hover {
141
+ color: @importanceHoverTextColor;
142
+ }
143
+
36
144
  .slate-editor-link {
37
145
  color: @color;
38
146
  text-decoration: @labelTextDecoration;
@@ -11,7 +11,7 @@
11
11
  @verticalAlign: baseline;
12
12
  @verticalMargin: 0em;
13
13
  @horizontalMargin: @relative2px;
14
- @backgroundColor: @lowImportanceBackground;
14
+ @backgroundColor: @grey;
15
15
  @color: @white;
16
16
  @backgroundImage: none;
17
17
  @verticalPadding: 0.5833em; /* medium is not @emSize custom value required */
@@ -19,7 +19,7 @@
19
19
  @borderRadius: @defaultBorderRadius;
20
20
  @textTransform: none;
21
21
  @fontWeight: @normal;
22
- @borderWidth: 0;
22
+ @borderWidth: 1px;
23
23
  @border: none;
24
24
 
25
25
  @labelLineHeight: inherit;
@@ -158,6 +158,19 @@
158
158
  @highImportanceBackground: #005293;
159
159
  @highlightImportanceBackground: @secondaryColor;
160
160
 
161
+ /* Hover Colors */
162
+ @lowImportanceHoverBackground: darken(@deepBlue,5);
163
+ @mediumImportanceHoverBackground: darken(#346F83,5);
164
+ @highImportanceHoverBackground: darken(#005293,5);
165
+ @highlightImportanceHoverBackground: darken(@secondaryColor,5);
166
+
167
+ @importanceHoverTextColor: @white;
168
+
169
+ @lowImportanceBasicTextColor: @deepBlue;
170
+ @mediumImportanceBasicTextColor: #346F83;
171
+ @highImportanceBasicTextColor: #005293;
172
+ @highlightImportanceBasicTextColor: @secondaryColor;
173
+
161
174
  @redTextColor: @white;
162
175
  @orangeTextColor: @white;
163
176
  @yellowTextColor: @white;
@@ -235,7 +248,7 @@
235
248
  @emptyCircleSize: 0.5em;
236
249
 
237
250
  /* Pointing */
238
- @pointingBorderColor: inherit;
251
+ @pointingBorderColor: @grey;
239
252
  @pointingBorderWidth: 0;
240
253
  @pointingVerticalDistance: 1em;
241
254
  @pointingTriangleSize: 0.6666em;
@@ -246,6 +259,7 @@
246
259
 
247
260
  /* Basic Pointing */
248
261
  @basicPointingTriangleOffset: -@pointingBorderWidth;
262
+ @basicImportanceBorderWidth: 0 0 1px 1px;
249
263
 
250
264
  /* Floating */
251
265
  @floatingTopOffset: -1em;
@@ -45,9 +45,9 @@
45
45
  }
46
46
 
47
47
  .info {
48
- text-align: @sourceInfoTextAlign;
49
- font-weight: @sourceInfoFontWeight;
50
- font-size: @sourceInfoFontSize;
48
+ text-align: @extraTextAlign;
49
+ font-weight: @extraFontWeight;
50
+ font-size: @extraFontSize;
51
51
  }
52
52
  }
53
53
 
@@ -22,10 +22,10 @@
22
22
  @sourceFontSize : 1.25rem;
23
23
  @sourceMargin : 0;
24
24
 
25
- /* Source Info */
26
- @sourceInfoTextAlign : right;
27
- @sourceInfoFontWeight : @normal;
28
- @sourceInfoFontSize : 1rem;
25
+ /* Extra info */
26
+ @extraTextAlign : right;
27
+ @extraFontWeight : @normal;
28
+ @extraFontSize : 1rem;
29
29
 
30
30
  /* Icon */
31
31
  @mobileQuoteIconSize : 2rem;
@@ -2,6 +2,8 @@
2
2
  Global Overrides
3
3
  *******************************/
4
4
 
5
+ @import '@eeacms/volto-eea-design-system/../theme/themes/eea/globals/utilities';
6
+
5
7
  /* Heading size adjustment */
6
8
  @media only screen and (min-width: @tabletBreakpoint) {
7
9
  h1 {