Created
January 27, 2018 02:13
-
-
Save hibuno/92b8162db12f0a0b36066caa13f33a0c to your computer and use it in GitHub Desktop.
Add style on index.vue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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