From 51d7c6fd6fdd8f3697043c229d8dcaada3318985 Mon Sep 17 00:00:00 2001 From: Sercan Yemen Date: Mon, 2 Jul 2018 19:51:37 +0300 Subject: [PATCH] (Contacts) Make the "Add Contact" button sticky on mobile devices --- .../apps/contacts/contact-list/contact-list.component.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/main/apps/contacts/contact-list/contact-list.component.scss b/src/app/main/apps/contacts/contact-list/contact-list.component.scss index a8b26b96..f00b223f 100644 --- a/src/app/main/apps/contacts/contact-list/contact-list.component.scss +++ b/src/app/main/apps/contacts/contact-list/contact-list.component.scss @@ -50,4 +50,10 @@ contacts-contact-list { right: 12px; padding: 0; z-index: 99; + + @include media-breakpoint-down('xs') { + position: sticky; + top: calc(100vh - 72px); + bottom: auto; + } } \ No newline at end of file