[Vuejs]-How can I reproduce this navigation with the Vuetify's component 'navigation drawer'?

0👍

I think It is CSS problem.

<div class="container">
 <div class="left-side">
  <ul>
   <li>Black</li>
   <li>Black</li>
   <li>Black</li>
   <li>Black</li>
   <li>Black</li>
  </ul>
 </div>
</div>

CSS style

.container {
    display: flex;
    position: static;
    transform: translate3d(0,0,0);
    width: 272px;
    min-width: 272px;
    max-width: 272px;
}
.container > * {
    min-width: 218px;
}

Leave a comment