From 80df3dd13db317aea00d5fee4fa6eb1c7b875927 Mon Sep 17 00:00:00 2001 From: SauceyRed Date: Fri, 18 Jul 2025 03:38:35 +0200 Subject: [PATCH] feat: adjust width, min-width, and max-width of channels and members list sidebars and implement saving of widths --- components/Guild/ChannelEntry.vue | 2 + components/UserInterface/ResizableSidebar.vue | 11 +++-- .../[serverId]/channels/[channelId].vue | 44 ++++++++++++++----- 3 files changed, 44 insertions(+), 13 deletions(-) diff --git a/components/Guild/ChannelEntry.vue b/components/Guild/ChannelEntry.vue index 98f210e..0c88a74 100644 --- a/components/Guild/ChannelEntry.vue +++ b/components/Guild/ChannelEntry.vue @@ -25,6 +25,8 @@ const isCurrentChannel = props.uuid == props.currentUuid; color: inherit; padding-left: .25em; padding-right: .25em; + overflow: hidden; + text-overflow: ellipsis; } .channel-list-link-container { diff --git a/components/UserInterface/ResizableSidebar.vue b/components/UserInterface/ResizableSidebar.vue index 68c0dc7..5a5a0f6 100644 --- a/components/UserInterface/ResizableSidebar.vue +++ b/components/UserInterface/ResizableSidebar.vue @@ -23,7 +23,7 @@