legowerewolf / AO3-themes

A selection of work skins for AO3
2 stars 1 forks source link

Official image max-size implementation #6

Open legowerewolf opened 3 years ago

legowerewolf commented 3 years ago

Figure out how it's implemented and decide if my implementation is better (and should be kept) or unnecessary.

legowerewolf commented 2 years ago

It seems like the max-size implementation is based on

.userstuff img {
    max-width: 100%;
    height: auto;
}

whereas mine compiles to

div.userstuff img {
  width: 90%;
  height: auto;
  margin-left: 5%;
  margin-right: 5%;
}