@appartmint/mint 0.10.25 → 0.10.26

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
@@ -465,23 +465,45 @@ p .mint-pill, p .mint-btn {
465
465
 
466
466
  .mint-embed-bg {
467
467
  display: flex;
468
- align-items: center;
468
+ flex-direction: column;
469
+ align-items: flex-end;
469
470
  justify-content: center;
471
+ gap: 2rem;
470
472
  position: relative;
471
- min-height: 100vh;
473
+ }
474
+ @media (min-width: 1200px) {
475
+ .mint-embed-bg {
476
+ flex-direction: row;
477
+ min-height: 100vh;
478
+ margin-bottom: 15%;
479
+ }
480
+ }
481
+ @media (min-width: 1200px) {
482
+ .mint-embed-bg > section {
483
+ margin-bottom: -15%;
484
+ }
472
485
  }
473
486
  .mint-embed-bg iframe, .mint-embed-bg video {
474
- position: absolute;
475
487
  top: 0;
476
488
  left: 0;
477
489
  width: 100%;
478
490
  height: 100%;
479
- border: none;
480
491
  object-fit: cover;
481
492
  pointer-events: none;
482
493
  }
494
+ @media (min-width: 1200px) {
495
+ .mint-embed-bg iframe, .mint-embed-bg video {
496
+ position: absolute;
497
+ }
498
+ }
483
499
  .mint-embed-bg.mint-overflow {
484
500
  overflow: hidden;
501
+ margin-bottom: 0;
502
+ }
503
+ @media (min-width: 1200px) {
504
+ .mint-embed-bg.mint-overflow > section {
505
+ margin-bottom: 0;
506
+ }
485
507
  }
486
508
  .mint-embed-bg.mint-overflow iframe, .mint-embed-bg.mint-overflow video {
487
509
  top: -10%;