Skip to content

Instantly share code, notes, and snippets.

@hibuno
Created January 27, 2018 02:13
Show Gist options
  • Save hibuno/92b8162db12f0a0b36066caa13f33a0c to your computer and use it in GitHub Desktop.
Save hibuno/92b8162db12f0a0b36066caa13f33a0c to your computer and use it in GitHub Desktop.
Add style on index.vue
<style lang="scss" scoped>
/*
* Card Columns Masonry - Bootstrap 4
* https://codepen.io/JacobLett/pen/oZmWdd
*/
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768px) {
.card-columns {column-count: 3;}
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
.card-columns {column-count: 3;}
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
.card-columns {column-count: 3;}
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment