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

41 lines
967 B
Vue
Raw Normal View History

2018-02-10 18:47:19 +01:00
<template>
<footer :style="color">
<div><a href="https://lw1.at/de/impressum">Impressum</a></div>
2018-09-21 20:53:47 +02:00
<div><a class="small" href="https://developer.spotify.com/">Albumcover und Probehören mithife von Spotify</a>
</div>
2018-02-10 18:47:19 +01:00
<div><a href="https://lw1.at/">Andere Projekte</a></div>
</footer>
</template>
2018-09-21 20:53:47 +02:00
<script lang="ts">
import Vue from 'vue';
2018-02-10 18:47:19 +01:00
2018-09-21 20:53:47 +02:00
export default Vue.extend({
name: "info",
props: {
color: String
},
2018-02-10 18:47:19 +01:00
};
</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%);
}
2018-02-19 20:43:53 +01:00
&.small {
font-size: 70%;
}
2018-02-10 18:47:19 +01:00
}
}
</style>