UX: micro animations chat input (#23030)

This commit is contained in:
chapoi 2023-08-09 12:58:36 +02:00 committed by GitHub
parent ac85520813
commit a846226e92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -72,6 +72,9 @@
}
&.-emoji {
&:hover {
transform: scale(1.1);
}
.d-icon {
.is-focused & {
color: var(--tertiary);

View File

@ -25,9 +25,14 @@
border-radius: 100%;
}
&.has-active-panel {
&:hover {
transform: scale(1.1);
}
&[aria-expanded="true"] {
.d-icon {
transform: rotate(45deg);
transform-origin: center;
}
}
}