UX: followups to #1f37fe5 (#21859)

- ensures buttons are aligned to the bottom
- makes the emoji icon tertiary as initially intended
- correctly sets the icon scale of the sending button
This commit is contained in:
Joffrey JAFFEUX 2023-05-31 16:58:31 +02:00 committed by GitHub
parent 475ac297a4
commit 7b7c4c383a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 4 deletions

View File

@ -14,6 +14,7 @@
display: flex;
align-items: center;
justify-content: center;
align-self: flex-end;
}
.d-icon {
@ -62,15 +63,19 @@
}
&:hover {
.d-icon.is-send-enabled & {
transform: scale(1.2);
.d-icon {
.is-send-enabled & {
transform: scale(1.2);
}
}
}
}
&.-emoji {
.d-icon.is-focused & {
color: var(--tertiary);
.d-icon {
.is-focused & {
color: var(--tertiary);
}
}
}
}