Prevent display name from shrinking in follow notifications
This commit is contained in:
parent
e001850ea8
commit
7ec9d9d327
2 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed text overflow in post subheader.
|
- Fixed text overflow in post subheader.
|
||||||
- Prevent display name from shrinking too much in post header.
|
- Prevent display name from shrinking too much in post headers and follow notifications.
|
||||||
- Log out if authentication error happens during timeline reload.
|
- Log out if authentication error happens during timeline reload.
|
||||||
|
|
||||||
## [1.15.0] - 2023-02-27
|
## [1.15.0] - 2023-02-27
|
||||||
|
|
|
@ -162,8 +162,8 @@ async function loadNextPage() {
|
||||||
}
|
}
|
||||||
|
|
||||||
.actor-address {
|
.actor-address {
|
||||||
|
flex-basis: 25%;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
min-width: 15%;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue