@npm_leadtech/legal-lib-components 7.53.1 → 7.53.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.
@@ -93,10 +93,12 @@ export const CardPaneStyled = styled.div `
93
93
 
94
94
  &--active {
95
95
  color: var(--primary-main);
96
+ font-weight: 700;
96
97
  }
97
98
 
98
99
  &--inactive {
99
100
  color: var(--error-main);
101
+ font-weight: 700;
100
102
  }
101
103
  }
102
104
 
@@ -109,7 +111,7 @@ export const CardPaneStyled = styled.div `
109
111
  margin-left: 0px;
110
112
  }
111
113
  .position {
112
- margin-left: 2px;
114
+ margin-left: 0px;
113
115
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
114
116
  margin-left: 15px;
115
117
  }
@@ -94,10 +94,12 @@ export const CardPaneStyled = styled.div`
94
94
 
95
95
  &--active {
96
96
  color: var(--primary-main);
97
+ font-weight: 700;
97
98
  }
98
99
 
99
100
  &--inactive {
100
101
  color: var(--error-main);
102
+ font-weight: 700;
101
103
  }
102
104
  }
103
105
 
@@ -110,7 +112,7 @@ export const CardPaneStyled = styled.div`
110
112
  margin-left: 0px;
111
113
  }
112
114
  .position {
113
- margin-left: 2px;
115
+ margin-left: 0px;
114
116
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
115
117
  margin-left: 15px;
116
118
  }
@@ -9,7 +9,7 @@ const CardPaneInfo = ({ dataQA, description, subdescription, id, title, handleCl
9
9
  else if (description === 'Inactive') {
10
10
  descriptionClass = 'pane--description--inactive';
11
11
  }
12
- return (_jsxs("div", { className: 'pane-wrapper', children: [paneTitle, _jsx("div", { "data-testid": 'description-div', className: descriptionClass, children: _jsx("li", { className: 'position', children: _jsx("div", { className: 'marker', children: description }) }) })] }, id));
12
+ return (_jsxs("div", { className: 'pane-wrapper', children: [paneTitle, _jsx("div", { "data-testid": 'description-div', className: descriptionClass, children: _jsx("div", { className: 'position', children: _jsx("div", { className: 'marker', children: description }) }) })] }, id));
13
13
  }
14
14
  return (_jsxs("div", { className: 'pane-wrapper', children: [paneTitle, _jsxs("div", { className: 'pane--description', children: [description, subdescription !== undefined && _jsx("span", { className: 'pane--description--subdescription', children: subdescription })] })] }, id));
15
15
  };
@@ -25,9 +25,9 @@ const CardPaneInfo: FC<CardPaneInfoProps> = ({ dataQA, description, subdescripti
25
25
  <div key={id} className='pane-wrapper'>
26
26
  {paneTitle}
27
27
  <div data-testid='description-div' className={descriptionClass}>
28
- <li className='position'>
28
+ <div className='position'>
29
29
  <div className='marker'>{description}</div>
30
- </li>
30
+ </div>
31
31
  </div>
32
32
  </div>
33
33
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@npm_leadtech/legal-lib-components",
3
- "version": "7.53.1",
3
+ "version": "7.53.2",
4
4
  "license": "ISC",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",