Sheet Modal limit size on larger devices?

It would be nice to be able to limit the max-width on a sheet model on larger devices or when the iPad is in landscape mode. (Sorry couldn’t find v7 suggestions)


-=-=-

You can easily do this with CSS:

@media (min-width: 1024px) {
  .sheet-modal {
    width: 640px;
    left: 50%;
    margin-left: -320px;
  }
}
2 Likes