diff --git a/sharedComponents/quick-contact/quick-contact.component.css b/sharedComponents/quick-contact/quick-contact.component.css index e2af560b..92bafd42 100644 --- a/sharedComponents/quick-contact/quick-contact.component.css +++ b/sharedComponents/quick-contact/quick-contact.component.css @@ -1,18 +1,31 @@ .quick-contact { position: fixed; - bottom: 40px; - right: 40px; + bottom: 5vh; + right: 5vw; } -.custom-avatar-circle { + +.uk-card > .uk-background-secondary:first-child { + border-radius: 4px 4px 0 0; +} + +.avatars > img { width: 50px; height: 50px; object-fit: cover; border: 2px solid #fff; } -@media (max-width: 768px) { - .quick-contact { - bottom: 20px; - right: 20px; - } -} \ No newline at end of file +.avatars > img:nth-child(n+1) { + margin-left: -5px; +} + +/* hide scrollbar but allow scrolling */ +.uk-overflow-auto { + -ms-overflow-style: none; /* for Internet Explorer, Edge */ + scrollbar-width: none; /* for Firefox */ + overflow-y: scroll; +} + +.uk-overflow-auto::-webkit-scrollbar { + display: none; /* for Chrome, Safari, and Opera */ +} diff --git a/sharedComponents/quick-contact/quick-contact.component.html b/sharedComponents/quick-contact/quick-contact.component.html index ac6d3bd2..c7690a09 100644 --- a/sharedComponents/quick-contact/quick-contact.component.html +++ b/sharedComponents/quick-contact/quick-contact.component.html @@ -1,19 +1,19 @@