openaire-library/sharedComponents/quick-contact/quick-contact.component.css

32 lines
577 B
CSS
Raw Normal View History

.quick-contact {
position: fixed;
2022-02-23 11:33:43 +01:00
bottom: 5vh;
right: 5vw;
}
2022-02-23 11:33:43 +01:00
.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;
}
2022-02-23 11:33:43 +01:00
.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 */
}