THW Logo layout optimization

This commit is contained in:
Jörn-Michael Miehe 2022-09-12 11:01:48 +00:00
parent e5010d2a2f
commit b1a62882d6

View file

@ -1,23 +1,18 @@
<template> <template>
<div class="flex-column"> <div class="flex-column text-wrap">
<div class="d-flex"> <div class="d-flex justify-end">
<div class="d-flex justify-end"> <span class="d-none d-sm-flex text-right thw-logo-font above mr-2">
<span class="d-none d-sm-flex text-right thw-logo-font above mr-2"> <slot name="above">Technisches Hilfswerk</slot>
<slot name="above"> </span>
Technisches<br /> <v-img
Hilfswerk class="d-flex"
</slot> max-width="56"
</span> max-height="56"
<v-img :src="require('../assets/thw.svg')"
class="d-flex" />
max-width="56"
max-height="56"
:src="require('../assets/thw.svg')"
/>
</div>
</div> </div>
<v-divider class="d-none d-sm-block my-1" /> <v-divider class="d-none d-sm-block my-1" />
<span class="d-none d-sm-flex text-wrap thw-logo-font below"> <span class="d-none d-sm-flex thw-logo-font below">
<slot>OV Musterstadt</slot> <slot>OV Musterstadt</slot>
</span> </span>
</div> </div>
@ -32,7 +27,8 @@ export default class THWLogo extends Vue {}
<style scoped> <style scoped>
.flex-column { .flex-column {
max-width: 240px; min-width: 250px;
max-width: 250px;
} }
.v-divider { .v-divider {
@ -43,6 +39,7 @@ export default class THWLogo extends Vue {}
.above { .above {
font-size: 28px; font-size: 28px;
line-height: 28px; line-height: 28px;
align-items: center;
} }
.below { .below {