From 27fee5d96188e897cb8074c52299269942e03372 Mon Sep 17 00:00:00 2001 From: Last2014 Date: Mon, 1 Jun 2026 22:04:23 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20=E3=82=B3=E3=83=9F=E3=83=A5=E3=83=8B?= =?UTF-8?q?=E3=83=86=E3=82=A3=E3=80=81=E3=83=81=E3=83=A3=E3=83=B3=E3=83=8D?= =?UTF-8?q?=E3=83=AB=E3=81=AE=E3=82=BF=E3=82=A4=E3=83=88=E3=83=AB=E3=81=8C?= =?UTF-8?q?=E3=81=AF=E3=81=BF=E5=87=BA=E3=81=A6=E3=82=82=E4=B8=89=E7=82=B9?= =?UTF-8?q?=E3=83=AA=E3=83=BC=E3=83=80=E3=81=AB=E3=81=AA=E3=82=89=E3=81=AA?= =?UTF-8?q?=E3=81=84=E5=95=8F=E9=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/routes/community/channel.vue | 4 ++-- packages/frontend/src/routes/community/index.vue | 11 +++++++---- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/packages/frontend/src/routes/community/channel.vue b/packages/frontend/src/routes/community/channel.vue index dfd63a5..3882835 100644 --- a/packages/frontend/src/routes/community/channel.vue +++ b/packages/frontend/src/routes/community/channel.vue @@ -11,7 +11,7 @@ >
- {{ channel.name }} + {{ channel.name }}
@@ -62,7 +62,7 @@ margin: auto; } -.community-top-info svg { +.community-top-info > svg { margin: auto 0; width: 1.25rem; height: 1.25rem; diff --git a/packages/frontend/src/routes/community/index.vue b/packages/frontend/src/routes/community/index.vue index 1442a21..a07f834 100644 --- a/packages/frontend/src/routes/community/index.vue +++ b/packages/frontend/src/routes/community/index.vue @@ -11,7 +11,7 @@ >
- {{ presentCommunity.name }} + {{ presentCommunity.name }}
@@ -43,15 +43,18 @@ display: flex; gap: 0.25rem; width: 100%; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; border-bottom: 1px solid var(--border-color); padding: 1rem; font-size: 1.1rem; font-weight: bold; box-sizing: border-box; } + +.community-top-info > span { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +}