diff --git a/src/registrar/assets/sass/_theme/_admin.scss b/src/registrar/assets/sass/_theme/_admin.scss index c3caa053e..346b92389 100644 --- a/src/registrar/assets/sass/_theme/_admin.scss +++ b/src/registrar/assets/sass/_theme/_admin.scss @@ -931,9 +931,10 @@ ul.add-list-reset { font-size: 14px; } -.domain-name-truncate { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - max-width: 100%; -} \ No newline at end of file +.domain-name-wrap { + white-space: normal; /* Allows wrapping */ + word-wrap: break-word; /* Ensures that long words or URLs will break and wrap */ + overflow: visible; /* Ensures no truncation */ + word-break: break-all; /* Breaks words at any point if needed */ + max-width: 100%; /* Adjust as necessary to limit the width */ + } \ No newline at end of file diff --git a/src/registrar/templates/domain_base.html b/src/registrar/templates/domain_base.html index 9f6189fd8..9f7e8d2e6 100644 --- a/src/registrar/templates/domain_base.html +++ b/src/registrar/templates/domain_base.html @@ -9,7 +9,7 @@
Domain name: {{ domain.name }}
diff --git a/src/registrar/templates/domain_detail.html b/src/registrar/templates/domain_detail.html index 4b6ca6e77..dca68f6ef 100644 --- a/src/registrar/templates/domain_detail.html +++ b/src/registrar/templates/domain_detail.html @@ -5,7 +5,7 @@ {% block domain_content %} {{ block.super }}