Last active
October 27, 2020 18:27
-
-
Save FrozenHearth/98902fb15acda722df6cbfaa7b72329e 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 id="app"> | |
<CardList /> | |
<CardList /> | |
<CardList /> | |
</div> | |
</template> | |
<script> | |
import CardList from "./components/CardList.vue"; | |
export default { | |
name: "App", | |
components: { | |
CardList | |
} | |
}; | |
</script> | |
<style> | |
body { | |
background: #f6f9fc; | |
} | |
#app { | |
display: flex; | |
justify-content: space-evenly; | |
align-items: center; | |
font-family: "Roboto", sans-serif; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
:root { | |
font-size: 10px; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment