Created
October 27, 2020 18:30
-
-
Save FrozenHearth/da8b7b62c45daa0252f03b7120ec2806 to your computer and use it in GitHub Desktop.
This file contains 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 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