Fix language dialog being cut off

Issue #650
This commit is contained in:
N-Pex 2025-06-19 13:05:38 +02:00
parent a6e4e60a8f
commit c082688bcb
2 changed files with 3 additions and 2 deletions

View file

@ -153,6 +153,7 @@ body { position:absolute; top:0; bottom:0; right:0; left:0; }
.dialog-text {
text-align: left;
word-break: break-word;
white-space: normal;
a {
color: black;

View file

@ -7,8 +7,8 @@
<v-card class="dialog-card">
<v-card-title class="dialog-title d-block">
<h2>{{ $t("profile.set_language") }}</h2>
<div class="subtitle-1">{{ $t("profile.language_description") }}</div>
<div class="subtitle-1" v-if="$config.languageSupportEmail">
<div class="dialog-text">{{ $t("profile.language_description") }}</div>
<div class="dialog-text" v-if="$config.languageSupportEmail">
{{ $t("profile.dont_see_yours") }}
<a :href="'mailto:' + $config.languageSupportEmail">{{ $t("profile.tell_us") }}</a>
</div>