@nnc-digital/nnc-design-system 1.0.0-alpha33 → 1.0.0-alpha35
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/build/index.js +9 -2
- package/build/index.js.map +1 -1
- package/build/index.mjs.js +9 -2
- package/build/index.mjs.js.map +1 -1
- package/package.json +1 -1
package/build/index.mjs.js
CHANGED
|
@@ -25654,6 +25654,7 @@ const InnerContainer = styled.div`
|
|
|
25654
25654
|
margin-right: auto;
|
|
25655
25655
|
margin-left: auto;
|
|
25656
25656
|
flex-grow: 1;
|
|
25657
|
+
z-index: 1;
|
|
25657
25658
|
|
|
25658
25659
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25659
25660
|
max-width: ${(props) => props.theme.theme_vars.breakpoints.l};
|
|
@@ -25785,7 +25786,10 @@ const VideoContainer = styled.div`
|
|
|
25785
25786
|
height: 410px;
|
|
25786
25787
|
}
|
|
25787
25788
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25788
|
-
height:
|
|
25789
|
+
height: 100%;
|
|
25790
|
+
}
|
|
25791
|
+
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.xl}) {
|
|
25792
|
+
height: 100%;
|
|
25789
25793
|
}
|
|
25790
25794
|
`;
|
|
25791
25795
|
|
|
@@ -25801,7 +25805,10 @@ const VideoBackground = styled.video`
|
|
|
25801
25805
|
height: 420px;
|
|
25802
25806
|
}
|
|
25803
25807
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25804
|
-
height:
|
|
25808
|
+
height: 568px;
|
|
25809
|
+
}
|
|
25810
|
+
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.xl}) {
|
|
25811
|
+
height: 645px;
|
|
25805
25812
|
}
|
|
25806
25813
|
`;
|
|
25807
25814
|
|