@nnc-digital/nnc-design-system 1.0.0-alpha26 → 1.0.0-alpha28
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 +4 -8
- package/build/index.js.map +1 -1
- package/build/index.mjs.js +4 -8
- package/build/index.mjs.js.map +1 -1
- package/package.json +1 -1
package/build/index.mjs.js
CHANGED
|
@@ -25775,36 +25775,32 @@ const Search = styled.div`
|
|
|
25775
25775
|
|
|
25776
25776
|
const VideoContainer = styled.div`
|
|
25777
25777
|
position: absolute;
|
|
25778
|
-
top: 0;
|
|
25779
|
-
left: 0;
|
|
25780
25778
|
width: 100%;
|
|
25781
25779
|
@media screen and (max-width: ${(props) => props.theme.theme_vars.breakpoints.m}) {
|
|
25782
|
-
height:
|
|
25780
|
+
height: 590px;
|
|
25783
25781
|
}
|
|
25784
25782
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.m}) and (max-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25785
25783
|
height: 420px;
|
|
25786
25784
|
}
|
|
25787
25785
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25788
|
-
height:
|
|
25786
|
+
height: 530px;
|
|
25789
25787
|
}
|
|
25790
25788
|
`;
|
|
25791
25789
|
|
|
25792
25790
|
const VideoBackground = styled.video`
|
|
25793
25791
|
position: absolute;
|
|
25794
|
-
top: 0;
|
|
25795
|
-
left: 0;
|
|
25796
25792
|
width: 100%;
|
|
25797
25793
|
height: 575px;
|
|
25798
25794
|
object-fit: cover;
|
|
25799
25795
|
z-index: -1;
|
|
25800
25796
|
@media screen and (max-width: ${(props) => props.theme.theme_vars.breakpoints.m}) {
|
|
25801
|
-
height:
|
|
25797
|
+
height: 590px;
|
|
25802
25798
|
}
|
|
25803
25799
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.m}) and (max-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25804
25800
|
height: 420px;
|
|
25805
25801
|
}
|
|
25806
25802
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25807
|
-
height: 540px;
|
|
25803
|
+
height: 540px;
|
|
25808
25804
|
}
|
|
25809
25805
|
`;
|
|
25810
25806
|
|