Skip to content

Commit c52df3c

Browse files
committed
fix(web): restore tooltip keyframe
1 parent 32b1e87 commit c52df3c

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/apps/web/src/index.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1949,6 +1949,17 @@ button:not(:disabled) {
19491949
animation-name: user-prompt-enter-light;
19501950
}
19511951

1952+
@keyframes tooltip-in {
1953+
from {
1954+
opacity: 0;
1955+
transform: translate(-50%, calc(-100% + 4px));
1956+
}
1957+
to {
1958+
opacity: 1;
1959+
transform: translate(-50%, -100%);
1960+
}
1961+
}
1962+
19521963
.action-icon-tooltip[data-side="bottom"] {
19531964
animation: action-icon-tooltip-in-bottom 120ms ease-out both;
19541965
}

0 commit comments

Comments
 (0)