Skip to content

Instantly share code, notes, and snippets.

@FrozenHearth
Created October 27, 2020 19:02
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/d38d94003855187e81d8a9e1a758b8e9 to your computer and use it in GitHub Desktop.
Save FrozenHearth/d38d94003855187e81d8a9e1a758b8e9 to your computer and use it in GitHub Desktop.
<template>
<div id="app">
<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;
}
.drop-preview {
background-color: rgba(150, 150, 200, 0.1);
margin: 1rem 2rem 1rem 0.3rem;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment