Contact List: Fix Add button overflow (#1976)

This commit is contained in:
Alexander Zinchuk 2022-08-05 19:23:20 +02:00
parent 7db1730dc8
commit 96df388fa8
2 changed files with 2 additions and 0 deletions

View File

@ -88,6 +88,7 @@ const ContactList: FC<OwnProps & StateProps> = ({
<Loading key="loading" />
)}
<FloatingActionButton
key="create-new-contact"
isShown
onClick={openNewContactDialog}
ariaLabel={lang('CreateNewContact')}

View File

@ -4,6 +4,7 @@
bottom: 1rem;
transform: translateY(calc(5rem - var(--call-header-height, 0rem)));
transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
z-index: 1;
body.animation-level-0 & {
transition: none !important;