25 lines
328 B
CSS
25 lines
328 B
CSS
.quick-contact {
|
|
position: fixed;
|
|
bottom: 5vh;
|
|
right: 5vw;
|
|
z-index: 980;
|
|
}
|
|
|
|
.uk-dropdown {
|
|
max-height: 650px;
|
|
height: calc(80vh - 100px);
|
|
width: 500px;
|
|
max-width: 80vw;
|
|
}
|
|
|
|
.avatars > img {
|
|
width: 50px;
|
|
height: 50px;
|
|
object-fit: cover;
|
|
border: 2px solid #fff;
|
|
}
|
|
|
|
.avatars > img:nth-child(n+1) {
|
|
margin-left: -5px;
|
|
}
|