Skip to content

Instantly share code, notes, and snippets.

@siumhossain
Created May 9, 2022 06:38
Show Gist options
  • Save siumhossain/d1c974417bc16fdf3b6596592c270ffc to your computer and use it in GitHub Desktop.
Save siumhossain/d1c974417bc16fdf3b6596592c270ffc to your computer and use it in GitHub Desktop.
make side bar scroll able vue/nuxt/html/css
<style scoped>
.section{
max-height: 98vh;
overflow:auto;
width:100%;
}
</style>
<div class="section">
<div v-for="i in 100" :key="i" class="text-white text-center mt-7 mx-2 px-1 py-1">
<p>hellogggggg</p>
</div>
<div class="text-white text-center mx-2 px-1 py-1">
<p>hellogggggg</p>
</div>
<div class="text-white text-center mx-2 px-1 py-1">
<p>hellollll</p>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment