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

33 lines
689 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>
<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%);
}
}
}
</style>