35 lines
565 B
CSS
35 lines
565 B
CSS
|
|
.fab-container {
|
|
position: fixed;
|
|
bottom: 35px;
|
|
right: 30px;
|
|
z-index: 1050;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: end;
|
|
}
|
|
|
|
.fab-main {
|
|
/* width: 45px;
|
|
height: 45px;
|
|
border-radius: 100%;
|
|
background-color: #0d6efd;
|
|
color: white;
|
|
border: none; */
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
|
|
/* font-size: 24px; */
|
|
cursor: pointer;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.fab-option {
|
|
pointer-events: auto;
|
|
margin-bottom: 10px;
|
|
}
|
|
@media (max-width: 768px) {
|
|
.fab-container {
|
|
right: 20px;
|
|
left: 50%;
|
|
bottom: 20px;
|
|
}
|
|
} |