Created
October 27, 2020 18:28
-
-
Save FrozenHearth/0e313e22078126927810c24d91fd50f3 to your computer and use it in GitHub Desktop.
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
<template> | |
<div class="card-list-container"> | |
<Card /> | |
<Card /> | |
</div> | |
</template> | |
<script> | |
import Card from "./Card"; | |
export default { | |
name: "CardList", | |
components: { | |
Card | |
} | |
}; | |
</script> | |
<style scoped> | |
.card-list-container { | |
display: flex; | |
flex-direction: column; | |
width: 18%; | |
max-width: 18%; | |
flex: 0 0 18%; | |
border: 1px solid #dcebf4; | |
border-radius: 6px; | |
padding: 1rem 1rem 0 1rem; | |
margin-top: 5rem; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment