style added to create space between streetname and city + margin of flex-table fixed

This commit is contained in:
2021-08-19 12:21:06 +02:00
parent a6b360c193
commit 3e9d96368d
3 changed files with 14 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
<component :is="component" :class="'address'+ isMultiline">
<p v-if="address.text"
class="street">
{{ address.text }}
{{ address.text }},
</p>
<p v-if="address.postcode"
class="postcode">
@@ -78,3 +78,13 @@ export default {
}
};
</script>
<style lang="scss" scoped>
p{
&:after{
content: " ";
margin-right: 0.3em;
}
}
</style>