Skip to content

Commit

Permalink
Merge pull request #4016 from traPtitech/fix/overflow_long_channel_na…
Browse files Browse the repository at this point in the history
…me_in_search_result

検索画面でチャンネル名が長いとオーバーフローする問題を修正
  • Loading branch information
nokhnaton committed Jul 28, 2023
2 parents 6ab8e55 + d690ca0 commit b7b0776
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
/>
</div>
<div :class="$style.channelAndDate">
{{ channelName }} - <time>{{ date }}</time>
<span :class="$style.channelName">{{ channelName }}</span> -
<time>{{ date }}</time>
</div>
</div>
</template>
Expand Down Expand Up @@ -236,4 +237,7 @@ $expand-button-height: 32px;
@include size-body2;
grid-area: channelAndDate;
}
.channelName {
word-break: break-all;
}
</style>

0 comments on commit b7b0776

Please sign in to comment.