1
0
Fork 0
mirror of https://github.com/Findus23/RadioStats.git synced 2024-09-19 16:03:48 +02:00
RadioStats/web/Info.vue
2018-02-19 20:43:53 +01:00

36 lines
882 B
Vue

<template>
<footer :style="color">
<div><a href="https://lw1.at/de/impressum">Impressum</a></div>
<div><a class="small" href="https://developer.spotify.com/">Albumcover und Probehören mithife von Spotify</a></div>
<div><a href="https://lw1.at/">Andere Projekte</a></div>
</footer>
</template>
<script>
export default {
name: "info",
props: ["color"],
};
</script>
<style lang="scss">
footer {
padding: 1rem 2rem;
display: flex;
flex-direction: row;
justify-content: space-between;
a {
color: inherit;
font-weight: bold;
transition: filter .2s;
&:hover {
color: inherit;
filter: invert(30%);
}
&.small {
font-size: 70%;
}
}
}
</style>