1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-09-28 04:59:02 +00:00
awesome-cheatsheets/components/TheCopyright.vue

71 lines
1.4 KiB
Vue
Raw Normal View History

2018-09-09 16:58:41 +00:00
<!-- *************************************************************************
TEMPLATE
************************************************************************* -->
<template lang="pug">
2018-09-09 17:49:42 +00:00
a(
class="c-the-copyright"
href="https://twitter.com/LeCoupa"
target="_blank"
)
2018-09-09 16:58:41 +00:00
span.c-the-copyright__name By LeCoupa
2018-09-09 22:06:09 +00:00
img(
:src="baseUrl + '/images/common/lecoupa.jpg'"
class="c-the-copyright__picture"
)
2018-09-09 16:58:41 +00:00
</template>
<!-- *************************************************************************
SCRIPT
************************************************************************* -->
<script>
2018-09-09 17:49:42 +00:00
export default {
2018-09-09 22:06:09 +00:00
data() {
return {
// --> STATE <--
baseUrl: process.env.baseUrl
};
},
2018-09-09 17:49:42 +00:00
methods: {
onClick() {
console.log("onClick");
}
}
};
2018-09-09 16:58:41 +00:00
</script>
<!-- *************************************************************************
STYLE
************************************************************************* -->
<style lang="scss">
$c: ".c-the-copyright";
#{$c} {
display: flex;
align-items: center;
justify-content: center;
padding: 5px 5px 5px 10px;
2018-09-09 16:58:41 +00:00
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>