#18 line-break new text
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
scammo 2022-01-14 13:46:36 +01:00
parent 872d544075
commit 862e0a1992

View File

@ -98,11 +98,11 @@ SPDX-License-Identifier: AGPL-3.0-or-later
title="Sonstiges"> title="Sonstiges">
<div v-if="profile.freetext" :class="{ 'lh-base': true, 'mb-4': profile.volunteerwork }"> <div v-if="profile.freetext" :class="{ 'lh-base': true, 'mb-4': profile.volunteerwork }">
<h5>Über mich</h5> <h5>Über mich</h5>
{{ profile.freetext }} <div class="line-break-text">{{ profile.freetext }}</div>
</div> </div>
<div v-if="profile.volunteerwork" class="lh-base"> <div v-if="profile.volunteerwork" class="lh-base">
<h5>Ehrenamtliche Arbeit</h5> <h5>Ehrenamtliche Arbeit</h5>
{{ profile.volunteerwork }} <div class="line-break-text">{{ profile.volunteerwork }}</div>
</div> </div>
</Section> </Section>
</template> </template>
@ -154,4 +154,7 @@ export default {
</script> </script>
<style> <style>
.freetext{
white-space: pre-line;
}
</style> </style>