From 4e10ce7003ef83475d408817738d643fc23fa61d Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Tue, 8 Nov 2022 22:32:32 -0600 Subject: [PATCH] Properly break long links during display --- src/main/resources/public/index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/resources/public/index.html b/src/main/resources/public/index.html index 0e6b942..75fddf1 100644 --- a/src/main/resources/public/index.html +++ b/src/main/resources/public/index.html @@ -29,7 +29,9 @@ table tr td div { max-height: 75px; line-height: 25px; - overflow: scroll; + word-wrap: break-word; + max-width: 575px; + overflow: auto; } form input[name="shortUrl"] {