Fix overflow in instance hostname addon

This commit is contained in:
silverpill 2022-11-27 16:31:42 +00:00
parent 872faae015
commit 894f835f2e

View file

@ -317,6 +317,7 @@ $text-color: #fff;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 15px; gap: 15px;
max-width: 100%;
min-width: $wide-sidebar-width - 50px; min-width: $wide-sidebar-width - 50px;
padding: 30px; padding: 30px;
width: $wide-sidebar-width; width: $wide-sidebar-width;
@ -384,8 +385,13 @@ $text-color: #fff;
.addon { .addon {
border-radius: 0 10px 10px 0; border-radius: 0 10px 10px 0;
color: #B3B3B3; color: #B3B3B3;
flex-shrink: 0;
max-width: 40%;
overflow: hidden;
padding-left: 0; padding-left: 0;
text-align: right; text-align: right;
text-overflow: ellipsis;
white-space: nowrap;
} }
} }