[Vuejs]-Why does v-container of vuetify.js takes fluid property automatically at 67% zoom?

0👍

Zooming out triggers CSS media-queries which set a max-width on container. One of those media-queries:

@media (min-width:1904px) {
 .container {
    max-width:1904px
  }
}

Leave a comment