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 @@
>
@@ -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 @@
>
@@ -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;
+}