@nnc-digital/nnc-design-system 1.0.0-alpha26 → 1.0.0-alpha27
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 +3 -3
- package/build/index.js.map +1 -1
- package/build/index.mjs.js +3 -3
- package/build/index.mjs.js.map +1 -1
- package/package.json +1 -1
package/build/index.mjs.js
CHANGED
|
@@ -25779,7 +25779,7 @@ const VideoContainer = styled.div`
|
|
|
25779
25779
|
left: 0;
|
|
25780
25780
|
width: 100%;
|
|
25781
25781
|
@media screen and (max-width: ${(props) => props.theme.theme_vars.breakpoints.m}) {
|
|
25782
|
-
height:
|
|
25782
|
+
height: 590px;
|
|
25783
25783
|
}
|
|
25784
25784
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.m}) and (max-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25785
25785
|
height: 420px;
|
|
@@ -25798,13 +25798,13 @@ const VideoBackground = styled.video`
|
|
|
25798
25798
|
object-fit: cover;
|
|
25799
25799
|
z-index: -1;
|
|
25800
25800
|
@media screen and (max-width: ${(props) => props.theme.theme_vars.breakpoints.m}) {
|
|
25801
|
-
height:
|
|
25801
|
+
height: 590px;
|
|
25802
25802
|
}
|
|
25803
25803
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.m}) and (max-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25804
25804
|
height: 420px;
|
|
25805
25805
|
}
|
|
25806
25806
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25807
|
-
height: 540px;
|
|
25807
|
+
height: 540px;
|
|
25808
25808
|
}
|
|
25809
25809
|
`;
|
|
25810
25810
|
|