(Contacts) Make the "Add Contact" button sticky on mobile devices

This commit is contained in:
Sercan Yemen 2018-07-02 19:51:37 +03:00
parent e182f19644
commit 51d7c6fd6f

View File

@ -50,4 +50,10 @@ contacts-contact-list {
right: 12px; right: 12px;
padding: 0; padding: 0;
z-index: 99; z-index: 99;
@include media-breakpoint-down('xs') {
position: sticky;
top: calc(100vh - 72px);
bottom: auto;
}
} }