@nnc-digital/nnc-design-system 1.0.0-alpha24 → 1.0.0-alpha26
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 +17 -20
- package/build/index.js.map +1 -1
- package/build/index.mjs.js +17 -20
- package/build/index.mjs.js.map +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -25802,7 +25802,6 @@ const VideoContainer = styled__default.default.div`
|
|
|
25802
25802
|
}
|
|
25803
25803
|
`;
|
|
25804
25804
|
|
|
25805
|
-
|
|
25806
25805
|
const VideoBackground = styled__default.default.video`
|
|
25807
25806
|
position: absolute;
|
|
25808
25807
|
top: 0;
|
|
@@ -25824,27 +25823,25 @@ const VideoBackground = styled__default.default.video`
|
|
|
25824
25823
|
|
|
25825
25824
|
const PlayPauseButton = styled__default.default.button`
|
|
25826
25825
|
position: absolute;
|
|
25827
|
-
|
|
25828
|
-
right: 20px;
|
|
25829
|
-
background: rgba(0, 0, 0, 0.5);
|
|
25830
|
-
border: 1px solid white;
|
|
25831
|
-
color: white;
|
|
25832
|
-
font-size: 32px;
|
|
25833
|
-
border-radius: 50%;
|
|
25834
|
-
width: 50px;
|
|
25835
|
-
height: 50px;
|
|
25836
|
-
cursor: pointer;
|
|
25837
|
-
display: flex;
|
|
25838
|
-
align-items: center;
|
|
25839
|
-
justify-content: center;
|
|
25840
|
-
z-index: 10;
|
|
25841
|
-
|
|
25842
|
-
&:hover {
|
|
25843
|
-
background: rgba(0, 0, 0, 0.7);
|
|
25844
|
-
}
|
|
25826
|
+
display: none;
|
|
25845
25827
|
@media screen and (min-width: ${(props) => props.theme.theme_vars.breakpoints.l}) {
|
|
25846
|
-
|
|
25828
|
+
bottom: 20px;
|
|
25847
25829
|
right: 20px;
|
|
25830
|
+
display: flex;
|
|
25831
|
+
align-items: center;
|
|
25832
|
+
justify-content: center;
|
|
25833
|
+
z-index: 10;
|
|
25834
|
+
background: rgba(0, 0, 0, 0.5);
|
|
25835
|
+
border: 1px solid white;
|
|
25836
|
+
color: white;
|
|
25837
|
+
font-size: 32px;
|
|
25838
|
+
border-radius: 50%;
|
|
25839
|
+
width: 50px;
|
|
25840
|
+
height: 50px;
|
|
25841
|
+
cursor: pointer;
|
|
25842
|
+
&:hover {
|
|
25843
|
+
background: rgba(0, 0, 0, 0.7);
|
|
25844
|
+
}
|
|
25848
25845
|
}
|
|
25849
25846
|
`;
|
|
25850
25847
|
|