Merge remote-tracking branch 'justin/feature/implement-UI-edit-reply-messages' into feature/implement-logic-edit-reply-messages

This commit is contained in:
Phillip Lang Martinez 2022-11-10 10:52:00 +02:00
commit 777eff2119
2 changed files with 6 additions and 2 deletions

View File

@ -46,7 +46,7 @@ export const chatStyles = css`
.last-message-ref {
position: fixed;
font-size: 20px;
font-size: 18px;
right: 40px;
bottom: 100px;
width: 50;
@ -64,6 +64,10 @@ export const chatStyles = css`
transform: scale(1.1);
}
.arrow-down-icon {
transform: scale(1.15);
}
.chat-list {
overflow-y: auto;
overflow-x: hidden;

View File

@ -138,7 +138,7 @@ return repeat(
)} -->
<div id='downObserver'></div>
<div class='last-message-ref'>
<vaadin-icon icon='vaadin:arrow-circle-down' slot='icon' @click=${() => {
<vaadin-icon class='arrow-down-icon' icon='vaadin:arrow-circle-down' slot='icon' @click=${() => {
this.shadowRoot.getElementById('downObserver').scrollIntoView({
behavior: 'smooth',
})