fix: account username changing
This commit is contained in:
parent
65f59100ce
commit
08505c2403
4 changed files with 40 additions and 5 deletions
|
@ -162,6 +162,10 @@ p {
|
|||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.post_right {
|
||||
max-width: calc(84% + 4px);
|
||||
}
|
||||
|
||||
.name {
|
||||
max-width: 250px;
|
||||
overflow: hidden;
|
||||
|
@ -178,6 +182,10 @@ p {
|
|||
.name.lg\:long {
|
||||
max-width: unset;
|
||||
}
|
||||
|
||||
.post_right {
|
||||
max-width: calc(91% + 4px);
|
||||
}
|
||||
}
|
||||
|
||||
ul,
|
||||
|
@ -357,6 +365,7 @@ img.emoji {
|
|||
height: 100dvh;
|
||||
top: 0;
|
||||
left: 0;
|
||||
animation: fadein ease-in-out 1 0.1s forwards running;
|
||||
}
|
||||
|
||||
.lightbox_exit {
|
||||
|
@ -369,6 +378,7 @@ img.emoji {
|
|||
box-shadow: var(--shadow-x-offset) var(--shadow-y-offset) var(--shadow-size)
|
||||
var(--color-shadow);
|
||||
border-radius: var(--radius);
|
||||
animation: popin ease-in-out 1 0.15s forwards running;
|
||||
}
|
||||
|
||||
/* avatar/banner */
|
||||
|
@ -1096,6 +1106,26 @@ dialog::backdrop {
|
|||
min-width: max-content;
|
||||
}
|
||||
|
||||
@keyframes fadein {
|
||||
from {
|
||||
opacity: 0%;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes static_fadeout {
|
||||
from {
|
||||
opacity: 100%;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes popin {
|
||||
from {
|
||||
opacity: 0%;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue