@granto-umbrella/umbrella-components 3.0.45 → 3.0.47

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@granto-umbrella/umbrella-components",
3
- "version": "3.0.45",
3
+ "version": "3.0.47",
4
4
  "description": "Umbrella Components for React",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -10,6 +10,8 @@ export const Container = styled.div`
10
10
  gap: 2rem;
11
11
  justify-content: center;
12
12
  padding: 2rem 0;
13
+ max-height: 450px;
14
+ overflow-y: auto;
13
15
  `;
14
16
 
15
17
  export const Column = styled.div`
@@ -22,7 +22,7 @@ export const Panel = styled.div`
22
22
  background: white;
23
23
  border-radius: 12px;
24
24
  padding: 32px;
25
- width: min(850px, calc(100% - 32px));
25
+ width: min(950px, calc(100% - 32px));
26
26
  border-top: 6px solid ${semanticColors.branding.surface.enabled};
27
27
  `;
28
28
 
@@ -7,6 +7,7 @@ import {
7
7
  Header,
8
8
  Overlay,
9
9
  Panel,
10
+ Title,
10
11
  } from './ExportExcelModal.styles';
11
12
  import FieldSelector from '../../molecules/FieldSelector/FieldSelector';
12
13
  import ButtonGroup from '../../molecules/ButtonGroup/ButtonGroup';
@@ -37,7 +38,9 @@ export const ExportExcelModal = ({
37
38
  <Panel>
38
39
  <Header>
39
40
  <div>
40
- <Dialog.Title>{title}</Dialog.Title>
41
+ <Dialog.Title>
42
+ <Title>{title}</Title>
43
+ </Dialog.Title>
41
44
  <Dialog.Description>{description}</Dialog.Description>
42
45
  </div>
43
46