mobilizon.chapril.org-mobil.../js/src/components/Logo.vue
Thomas Citharel aaa1111cab
Use SVG logo instead of raw title
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2019-04-24 17:36:25 +02:00

21 lines
441 B
Vue

<template>
<img src="../assets/mobilizon_logo.svg" alt="Mobilizon">
</template>
<script lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator';
@Component
export default class Logo extends Vue {
@Prop({ type: Boolean, required: false, default: false }) invert!: boolean;
}
</script>
<style lang="scss" scoped>
@import "../variables.scss";
img {
color: #403e56;
height: 80px;
}
</style>