@nnc-digital/nnc-design-system 1.0.0-alpha34 → 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 +8 -2
- package/build/index.js.map +1 -1
- package/build/index.mjs.js +8 -2
- package/build/index.mjs.js.map +1 -1
- package/package.json +1 -1
package/build/index.mjs.js
CHANGED
|
@@ -25786,7 +25786,10 @@ const VideoContainer = styled.div`
|
|
|
25786
25786
|
height: 410px;
|
|
25787
25787
|
}
|
|
25788
25788
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25789
|
-
height:
|
|
25789
|
+
height: 100%;
|
|
25790
|
+
}
|
|
25791
|
+
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.xl}) {
|
|
25792
|
+
height: 100%;
|
|
25790
25793
|
}
|
|
25791
25794
|
`;
|
|
25792
25795
|
|
|
@@ -25802,7 +25805,10 @@ const VideoBackground = styled.video`
|
|
|
25802
25805
|
height: 420px;
|
|
25803
25806
|
}
|
|
25804
25807
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25805
|
-
height:
|
|
25808
|
+
height: 568px;
|
|
25809
|
+
}
|
|
25810
|
+
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.xl}) {
|
|
25811
|
+
height: 645px;
|
|
25806
25812
|
}
|
|
25807
25813
|
`;
|
|
25808
25814
|
|