Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions desktop/src/shared/styles/globals/animations.css
Original file line number Diff line number Diff line change
Expand Up @@ -424,8 +424,7 @@
display: inline-block;
line-height: var(--buzz-sidebar-action-description-line-height);
max-width: 100%;
overflow: hidden;
white-space: nowrap;
overflow-wrap: break-word;
}

.buzz-sidebar-action-description__motion {
Expand All @@ -443,10 +442,16 @@
will-change: transform;
}

/* The roll-up reel animates between two fixed one-line slots, so text is
clipped to a single line only while the transition plays; the settled
state above wraps freely. */
.buzz-sidebar-action-description__reel > span {
display: block;
height: var(--buzz-sidebar-action-description-line-height);
line-height: var(--buzz-sidebar-action-description-line-height);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

@keyframes buzz-sidebar-action-description-roll-up {
Expand Down