Module:Layout/vbox.css

From Puella Magi Wiki
Jump to navigation Jump to search
/* ===================================================
 * Default layout
 * =================================================== */

.pm-vbox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pm-vbox__box {
  flex: 1;
  min-width: 0; /* Prevent overflow issues with long content */
}

.pm-vbox .pm-vbox__box--centered { text-align: center; }
.pm-vbox .pm-vbox__box--hcenter { justify-items: center; }
.pm-vbox .pm-vbox__box--vcenter { align-items: center; }

/* ===================================================
 * Layout fixes
 * =================================================== */

.pm-vbox__box .mw-file-element {
  height: auto;
  max-width: 100%;
}