fix (client): notification reply-to style when the summary is long

c04c071aec
This commit is contained in:
naskya 2024-05-23 23:15:16 +09:00
parent 747f1d6e04
commit 7a3aec1881
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C

View file

@ -71,6 +71,7 @@ defineProps<{
.reply-to {
color: var(--fgTransparentWeak);
text-overflow: ellipsis;
.avatar {
width: 1.2em;
@ -89,6 +90,12 @@ defineProps<{
content: ": ";
}
}
.summary {
display: inline-block;
max-width: 60%;
position: absolute;
}
&:hover,
&:focus-within {
color: var(--fg);