diff --git a/dashboard/src/components/MailDomainStatus.vue b/dashboard/src/components/MailDomainStatus.vue index 0e6475283..e346b1afa 100644 --- a/dashboard/src/components/MailDomainStatus.vue +++ b/dashboard/src/components/MailDomainStatus.vue @@ -119,9 +119,9 @@ onMounted(async () => { {{ domainStatus[key].type }} - {{ $t('email.dnsStatus.expected') }}: - -
{{ domainStatus[key].expected }}
+ {{ $t('email.dnsStatus.expected') }}: + +
{{ domainStatus[key].expected }}
@@ -232,9 +232,19 @@ onMounted(async () => { padding-right: 20px; } -/* The overflow scroll is there, but I just can't scroll the text! WHY?! */ -/* .domain-status > tbody > tr > td:nth-child(2) { - overflow: scroll; -} */ +.domain-status-expected-label { + vertical-align: top; +} + +.domain-status-expected-value { + display: flex; + gap: 6px; + align-items: center; +} + +.domain-status-expected { + overflow-wrap: break-word; + word-break: break-all; +}