@mond-design-system/react 6.2.1 → 6.2.3
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/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +6 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -2711,10 +2711,16 @@ th.mds-DataTable__actions {
|
|
|
2711
2711
|
|
|
2712
2712
|
/* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/MediaPlaceholder/MediaPlaceholder.module.css?mds-scoped */
|
|
2713
2713
|
.mds-MediaPlaceholder__media {
|
|
2714
|
+
display: block;
|
|
2715
|
+
}
|
|
2716
|
+
.mds-MediaPlaceholder__frame {
|
|
2714
2717
|
position: relative;
|
|
2715
2718
|
display: block;
|
|
2716
2719
|
overflow: hidden;
|
|
2717
2720
|
aspect-ratio: var(--media-aspect, 16 / 9);
|
|
2721
|
+
max-block-size: var(--mds-media-max-block);
|
|
2722
|
+
inline-size: min(100%, calc(var(--mds-media-max-block) * (var(--media-aspect, 16 / 9))));
|
|
2723
|
+
margin-inline: auto;
|
|
2718
2724
|
border-radius: var(--mds-radius-media);
|
|
2719
2725
|
background: var(--mds-surface-sunken);
|
|
2720
2726
|
}
|