Template:ROH Soldier/styles.css

Revision as of 09:38, 28 June 2024 by Borderman (talk | contribs) (additional responsive layout for 800px screen size)
/* Responsive layout for displaying the image above the table when the screen size is reduced */
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 5px;
}

.roh-column {
  flex: 0 1 auto;
  max-width: 100%;
  margin: 5px;
}

@media (max-width: 800px) {
  .roh-column {
    flex: 100%;
    max-width: 100%;
  }
}