@npm_leadtech/legal-lib-components 7.53.4 → 7.54.1
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/dist/css/styles.css +1 -1
- package/dist/src/components/atoms/JumbotronStatic/JumbotronStatic.js +2 -3
- package/dist/src/components/atoms/JumbotronStatic/JumbotronStatic.styled.js +0 -6
- package/dist/src/components/atoms/JumbotronStatic/JumbotronStatic.styled.ts +0 -6
- package/dist/src/components/atoms/JumbotronStatic/JumbotronStatic.tsx +2 -4
- package/dist/src/components/atoms/JumbotronStatic/JumbotronStaticProps.types.d.ts +0 -1
- package/dist/src/components/atoms/JumbotronStatic/JumbotronStaticProps.types.ts +0 -1
- package/dist/src/components/atoms/Radio/Radio.scss +1 -1
- package/dist/src/components/organisms/CardFunctionality/CardFunctionality.styled.js +3 -1
- package/dist/src/components/organisms/CardFunctionality/CardFunctionality.styled.ts +3 -1
- package/package.json +1 -1
package/dist/css/styles.css
CHANGED
|
@@ -1853,7 +1853,7 @@ h2.react-datepicker__current-month {
|
|
|
1853
1853
|
display: flex;
|
|
1854
1854
|
height: 42px;
|
|
1855
1855
|
justify-content: center;
|
|
1856
|
-
width: 80px;
|
|
1856
|
+
min-width: 80px;
|
|
1857
1857
|
}
|
|
1858
1858
|
.e-radio.tabs .e-radio__inner .radio-item-container:hover {
|
|
1859
1859
|
background: var(--neutral-neutral-4);
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { JumbotronStaticStyled } from './JumbotronStatic.styled';
|
|
3
|
-
export const JumbotronStatic = ({ title
|
|
4
|
-
|
|
5
|
-
return (_jsx(JumbotronStaticStyled, { className: 'jumbotron--static', children: _jsx("h1", { className: `${shorterTitle} serif --super-hero`, children: title }) }));
|
|
3
|
+
export const JumbotronStatic = ({ title }) => {
|
|
4
|
+
return (_jsx(JumbotronStaticStyled, { className: 'jumbotron--static', children: _jsx("h1", { className: 'serif --super-hero', children: title }) }));
|
|
6
5
|
};
|
|
@@ -3,12 +3,10 @@ import React, { type FC } from 'react'
|
|
|
3
3
|
import { type JumbotronStaticProps } from './JumbotronStaticProps.types'
|
|
4
4
|
import { JumbotronStaticStyled } from './JumbotronStatic.styled'
|
|
5
5
|
|
|
6
|
-
export const JumbotronStatic: FC<JumbotronStaticProps> = ({ title
|
|
7
|
-
const shorterTitle = locale?.includes('DE') ? 'shorter-text' : ''
|
|
8
|
-
|
|
6
|
+
export const JumbotronStatic: FC<JumbotronStaticProps> = ({ title }) => {
|
|
9
7
|
return (
|
|
10
8
|
<JumbotronStaticStyled className={'jumbotron--static'}>
|
|
11
|
-
<h1 className=
|
|
9
|
+
<h1 className='serif --super-hero'>{title}</h1>
|
|
12
10
|
</JumbotronStaticStyled>
|
|
13
11
|
)
|
|
14
12
|
}
|
|
@@ -8,6 +8,8 @@ export const CardFunctionalityStyled = styled.article `
|
|
|
8
8
|
gap: var(--global-gap);
|
|
9
9
|
padding: 1em;
|
|
10
10
|
width: 100%;
|
|
11
|
+
justify-content: space-between;
|
|
12
|
+
|
|
11
13
|
@media ${device.laptop} {
|
|
12
14
|
width: 50%;
|
|
13
15
|
}
|
|
@@ -53,7 +55,7 @@ export const CardFunctionalityStyled = styled.article `
|
|
|
53
55
|
|
|
54
56
|
.tags {
|
|
55
57
|
display: flex;
|
|
56
|
-
gap:
|
|
58
|
+
gap: 0.5rem;
|
|
57
59
|
flex-wrap: wrap;
|
|
58
60
|
}
|
|
59
61
|
}
|
|
@@ -9,6 +9,8 @@ export const CardFunctionalityStyled = styled.article`
|
|
|
9
9
|
gap: var(--global-gap);
|
|
10
10
|
padding: 1em;
|
|
11
11
|
width: 100%;
|
|
12
|
+
justify-content: space-between;
|
|
13
|
+
|
|
12
14
|
@media ${device.laptop} {
|
|
13
15
|
width: 50%;
|
|
14
16
|
}
|
|
@@ -54,7 +56,7 @@ export const CardFunctionalityStyled = styled.article`
|
|
|
54
56
|
|
|
55
57
|
.tags {
|
|
56
58
|
display: flex;
|
|
57
|
-
gap:
|
|
59
|
+
gap: 0.5rem;
|
|
58
60
|
flex-wrap: wrap;
|
|
59
61
|
}
|
|
60
62
|
}
|