Skip to content

Instantly share code, notes, and snippets.

@FrozenHearth
Created October 27, 2020 18:30
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/da8b7b62c45daa0252f03b7120ec2806 to your computer and use it in GitHub Desktop.
Save FrozenHearth/da8b7b62c45daa0252f03b7120ec2806 to your computer and use it in GitHub Desktop.
<template>
<div class="card-container">
<div class="card-body">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
</p>
</div>
</div>
</template>
<script>
export default {
name: "Card"
};
</script>
<style scoped>
.card-container {
background: #fff;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
width: 100%;
height: 100%;
cursor: pointer;
margin-bottom: 2rem;
}
.card-body {
padding: 1rem 2rem;
}
p {
font-size: 1.6rem;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment