@mailstep/design-system 0.6.37 → 0.6.38
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/package.json +1 -1
- package/ui/Blocks/CornerDialog/styles.js +1 -1
- package/ui/index.es.js +2132 -2128
- package/ui/index.umd.js +6 -2
package/ui/index.umd.js
CHANGED
|
@@ -930,16 +930,20 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
930
930
|
position: fixed;
|
|
931
931
|
z-index: 10;
|
|
932
932
|
bottom: 3rem;
|
|
933
|
-
right:
|
|
933
|
+
right: 0.6rem;
|
|
934
934
|
background: white;
|
|
935
935
|
border-radius: 12px;
|
|
936
936
|
box-shadow: cornerDialogShadow;
|
|
937
|
-
width:
|
|
937
|
+
width: 95vw;
|
|
938
938
|
max-width: 400px;
|
|
939
939
|
padding: 50px 30px 30px;
|
|
940
940
|
color: typoPrimary;
|
|
941
941
|
transition: opacity 225ms linear;
|
|
942
942
|
opacity: ${({$mounted:e})=>e?1:0};
|
|
943
|
+
@media (min-width: 768px) {
|
|
944
|
+
right: 3rem;
|
|
945
|
+
width: 400px;
|
|
946
|
+
}
|
|
943
947
|
`,lX=ae.div`
|
|
944
948
|
margin-bottom: 15px;
|
|
945
949
|
color: typoPrimary;
|