From 894f835f2e25879c8ab82b9e333f261e3cb2eb08 Mon Sep 17 00:00:00 2001 From: silverpill Date: Sun, 27 Nov 2022 16:31:42 +0000 Subject: [PATCH] Fix overflow in instance hostname addon --- src/views/LandingPage.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/views/LandingPage.vue b/src/views/LandingPage.vue index ceb4833..6225480 100644 --- a/src/views/LandingPage.vue +++ b/src/views/LandingPage.vue @@ -317,6 +317,7 @@ $text-color: #fff; display: flex; flex-direction: column; gap: 15px; + max-width: 100%; min-width: $wide-sidebar-width - 50px; padding: 30px; width: $wide-sidebar-width; @@ -384,8 +385,13 @@ $text-color: #fff; .addon { border-radius: 0 10px 10px 0; color: #B3B3B3; + flex-shrink: 0; + max-width: 40%; + overflow: hidden; padding-left: 0; text-align: right; + text-overflow: ellipsis; + white-space: nowrap; } }