Skip to content

Instantly share code, notes, and snippets.

@jamesoshea
Last active June 11, 2018 18:48
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 jamesoshea/43443efd21b5621bee4b087cb8246ed9 to your computer and use it in GitHub Desktop.
Save jamesoshea/43443efd21b5621bee4b087cb8246ed9 to your computer and use it in GitHub Desktop.
<template>
<div
class="vte__cool-card"
data-test="cool-card-div"
>
hello I am a card :)
</div>
</template>
<script>
export default {
name: 'CoolCard'
};
</script>
<style>
.vte__cool-card {
height: 20vh;
width: 40vw;
padding: 2rem;
border-radius: 1rem;
box-shadow: 0px 1px 1px #000;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment