32 lines
577 B
CSS
32 lines
577 B
CSS
.quick-contact {
|
|
position: fixed;
|
|
bottom: 5vh;
|
|
right: 5vw;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.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 */
|
|
}
|