Files
webgems/components/Card.vue
André Weller 0b154f4d9f fix design
2019-05-12 03:03:47 +02:00

41 lines
563 B
Vue

<template lang="pug">
.card
.card--title
p {{title}}
.card--body
p {{desc}}
a(:href="url" target='_blank') {{url}}
</template>
<script>
export default {
props: ['title', 'desc', 'url']
}
</script>
<style lang="scss" scoped>
.card {
background: #eee;
border-radius: .3rem;
padding: 1rem;
&--title {
font-weight: 900;
margin-bottom: .5rem;
}
&--body {
p {
font-size: 12px;
color: #8795A1;
margin-bottom: .5rem;
}
a {
font-size: 9px;
line-height: 1;
}
}
}
</style>