1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-09-29 21:49:01 +00:00
awesome-cheatsheets/components/TheCopyright.vue
2018-09-10 00:15:48 +02:00

71 lines
1.4 KiB
Vue

<!-- *************************************************************************
TEMPLATE
************************************************************************* -->
<template lang="pug">
a(
class="c-the-copyright"
href="https://twitter.com/LeCoupa"
target="_blank"
)
span.c-the-copyright__name By LeCoupa
img(
:src="baseUrl + '/images/common/lecoupa.jpg'"
class="c-the-copyright__picture"
)
</template>
<!-- *************************************************************************
SCRIPT
************************************************************************* -->
<script>
export default {
data() {
return {
// --> STATE <--
baseUrl: process.env.baseUrl
};
},
methods: {
onClick() {
console.log("onClick");
}
}
};
</script>
<!-- *************************************************************************
STYLE
************************************************************************* -->
<style lang="scss">
$c: ".c-the-copyright";
#{$c} {
display: flex;
align-items: center;
justify-content: center;
padding: 5px 5px 5px 10px;
border-top: 1px solid #313d4f;
border-left: 1px solid #313d4f;
border-top-left-radius: 4px;
background-color: #171e29;
#{$c}__name {
margin-right: 6px;
color: #ffffff;
font-size: 14px;
}
#{$c}__picture {
display: inline-block;
width: 30px;
height: 30px;
border-radius: 100%;
}
}
</style>