update cards

This commit is contained in:
André Weller
2019-05-14 21:19:08 +02:00
parent 7d09c286f1
commit 4ed605f6ed

View File

@@ -1,18 +1,17 @@
<template lang="pug"> <template lang="pug">
.card(@click="goToSite(url)") .card(@click="goToSite(title,url)")
.card--title p.card--title {{title}}
p {{title}}
.card--body .card--body
p {{desc}} p {{desc}}
a(:href="url" target='_blank') Visit Website a(:href="url" :target='title' rel='noreferrer') Visit Website
</template> </template>
<script> <script>
export default { export default {
props: ['title', 'desc', 'url'], props: ['title', 'desc', 'url'],
methods: { methods: {
goToSite(url){ goToSite(title,url){
location.href = url window.open(url, title, 'noopener')
} }
} }
} }
@@ -25,8 +24,6 @@ export default {
border-radius: .3rem; border-radius: .3rem;
padding: 1rem; padding: 1rem;
transition: .2s ease-in-out; transition: .2s ease-in-out;
display:flex;
flex-direction: column;
&:hover { &:hover {
transform: scale(1.002); transform: scale(1.002);
@@ -37,13 +34,14 @@ export default {
} }
&--title { &--title {
p{
font-weight: 900; font-weight: 900;
margin: 0; margin: 0;
} }
}
&--body { &--body {
display:flex;
flex-direction: column;
p { p {
font-size: 13px; font-size: 13px;
color: white; color: white;
@@ -54,7 +52,7 @@ export default {
a { a {
font-size: 12px; font-size: 12px;
line-height: 1; line-height: 1;
align-self: bottom; align-self: flex-end;
} }
} }
} }