@appartmint/mint 0.11.7 → 0.11.9

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/css/mint.css CHANGED
@@ -36,7 +36,7 @@
36
36
  .mint-btn,
37
37
  .mint-btn-group,
38
38
  .mint-pill {
39
- width: auto;
39
+ width: fit-content;
40
40
  }
41
41
  }
42
42
  .mint-btn:hover,
@@ -810,20 +810,24 @@ app-footer::before {
810
810
  transition: transform 200ms ease-out;
811
811
  }
812
812
 
813
- .mint-16-9 {
813
+ .mint-aspect, .mint-16-9 {
814
814
  position: relative;
815
815
  height: 0;
816
- padding-top: 56.25%;
817
816
  overflow: hidden;
818
817
  }
819
- .mint-16-9 iframe {
818
+ .mint-aspect iframe, .mint-16-9 iframe, .mint-aspect video, .mint-16-9 video {
820
819
  position: absolute !important;
821
- top: 0 !important;
822
- left: 0 !important;
820
+ top: 50% !important;
821
+ left: 50% !important;
822
+ transform: translate(-50%, -50%) !important;
823
823
  width: 100% !important;
824
824
  height: 100% !important;
825
825
  }
826
826
 
827
+ .mint-16-9 {
828
+ padding-top: 56.25%;
829
+ }
830
+
827
831
  *, *::before, *::after {
828
832
  box-sizing: border-box;
829
833
  }