We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32b1e87 commit c52df3cCopy full SHA for c52df3c
1 file changed
src/apps/web/src/index.css
@@ -1949,6 +1949,17 @@ button:not(:disabled) {
1949
animation-name: user-prompt-enter-light;
1950
}
1951
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
+
1963
.action-icon-tooltip[data-side="bottom"] {
1964
animation: action-icon-tooltip-in-bottom 120ms ease-out both;
1965
0 commit comments