From a0f5e00fa6c0da8a8cf0c7ff3ccc76781f0931c1 Mon Sep 17 00:00:00 2001 From: silverpill Date: Tue, 28 Feb 2023 18:44:33 +0000 Subject: [PATCH] Fix text overflow in post subheader --- CHANGELOG.md | 4 ++++ src/components/Post.vue | 3 +++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99e24f8..41b3822 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Use `/@username` routes by default. +### Fixed + +- Fixed text overflow in post subheader. + ## [1.15.0] - 2023-02-27 ### Added diff --git a/src/components/Post.vue b/src/components/Post.vue index b268b43..e4c5013 100644 --- a/src/components/Post.vue +++ b/src/components/Post.vue @@ -644,6 +644,9 @@ async function onMintToken() { a { @include block-link; + + overflow: hidden; + word-wrap: break-word; } }