Skip to content

Instantly share code, notes, and snippets.

@FrozenHearth
Created October 27, 2020 18:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FrozenHearth/0e313e22078126927810c24d91fd50f3 to your computer and use it in GitHub Desktop.
Save FrozenHearth/0e313e22078126927810c24d91fd50f3 to your computer and use it in GitHub Desktop.
<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