For my Vue and Vuetify dashboard, I have opted to use the grid system in Vuetify's library to structure the layout. However, I am encountering an issue where the appearance varies depending on the screen resolution. Is there a way to keep the left container always the same width as the side drawer?
I attempted to manually set the max-width of the sidebar to 300px, but it did not produce the desired result.
<v-container grid-list-md text-xs-center>
<v-layout row wrap>
<v-flex xs3 class="side">
<SideBar/>
</v-flex>
<v-flex xs9 class="main" >
<MainPage/>
</v-flex>
</v-layout>
</v-container>
Expectation:
https://i.sstatic.net/l5skQ.png
Reality:
https://i.sstatic.net/f3UGl.png
Generated HTML/CSS code: https://pastebin.com/bLYgv5pz