UX: chat > general fixes (#25929)
* UX: chat > keep send icon active when keyboard is hidden (mobile) * FIX: chat > keep composer insert button at bottom * UX: chat > give seperator equal padding
This commit is contained in:
parent
36a9b5d0fa
commit
337773b8ac
|
@ -125,7 +125,7 @@
|
|||
}
|
||||
|
||||
& + .chat-message-separator__line-container {
|
||||
padding: 20px 0 20px var(--scrollbarWidth);
|
||||
padding: 20px var(--scrollbarWidth) 20px var(--scrollbarWidth);
|
||||
box-sizing: border-box;
|
||||
|
||||
.chat-message-separator__line {
|
||||
|
|
|
@ -6,3 +6,8 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.chat-composer-dropdown__trigger-btn {
|
||||
align-self: flex-end;
|
||||
height: 50px;
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
padding-top: 0.75rem;
|
||||
background: none;
|
||||
.chat-replying-indicator {
|
||||
padding-left: calc(1rem + (2 * 5px) + 0.2rem + (2 * 0.65rem));
|
||||
padding-left: calc(1rem + (2 * 5px) + 0.2rem + (2 * 0.65rem) + 1px);
|
||||
}
|
||||
}
|
||||
&__outer-container {
|
||||
|
@ -42,7 +42,8 @@
|
|||
border-radius: 100%;
|
||||
line-height: 0;
|
||||
|
||||
.is-send-enabled.is-focused & {
|
||||
.is-send-enabled.is-focused &,
|
||||
.is-send-enabled & {
|
||||
background-color: var(--tertiary-high);
|
||||
color: var(--secondary);
|
||||
.d-icon {
|
||||
|
|
Loading…
Reference in New Issue