@nnc-digital/nnc-design-system 1.0.0-alpha34 → 1.0.0-alpha36
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
|
@@ -7950,6 +7950,7 @@ const Container$_ = styled.div`
|
|
|
7950
7950
|
width: 100%;
|
|
7951
7951
|
display: block;
|
|
7952
7952
|
box-sizing: border-box;
|
|
7953
|
+
z-index: 1;
|
|
7953
7954
|
`;
|
|
7954
7955
|
|
|
7955
7956
|
const CookieHide = styled.button`
|
|
@@ -25786,7 +25787,10 @@ const VideoContainer = styled.div`
|
|
|
25786
25787
|
height: 410px;
|
|
25787
25788
|
}
|
|
25788
25789
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25789
|
-
height:
|
|
25790
|
+
height: 560px;
|
|
25791
|
+
}
|
|
25792
|
+
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.xl}) {
|
|
25793
|
+
height: 540px;
|
|
25790
25794
|
}
|
|
25791
25795
|
`;
|
|
25792
25796
|
|
|
@@ -25802,7 +25806,10 @@ const VideoBackground = styled.video`
|
|
|
25802
25806
|
height: 420px;
|
|
25803
25807
|
}
|
|
25804
25808
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25805
|
-
height:
|
|
25809
|
+
height: 568px;
|
|
25810
|
+
}
|
|
25811
|
+
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.xl}) {
|
|
25812
|
+
height: 645px;
|
|
25806
25813
|
}
|
|
25807
25814
|
`;
|
|
25808
25815
|
|