diff --git a/CHANGELOG.md b/CHANGELOG.md index 41b3822..faea475 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Fixed - Fixed text overflow in post subheader. +- Prevent display name from shrinking too much in post header. ## [1.15.0] - 2023-02-27 diff --git a/src/components/Post.vue b/src/components/Post.vue index e4c5013..e1fe4cc 100644 --- a/src/components/Post.vue +++ b/src/components/Post.vue @@ -616,8 +616,8 @@ async function onMintToken() { } .actor-address { + flex-basis: 25%; flex-grow: 1; - min-width: 15%; overflow: hidden; text-overflow: ellipsis; user-select: all;