moodist/src/components/shuffle/shuffle.module.css
2023-12-29 17:30:13 +03:30

22 lines
456 B
CSS

.button {
position: fixed;
right: 20px;
bottom: 20px;
z-index: 99;
display: flex;
align-items: center;
justify-content: center;
width: 45px;
height: 45px;
font-size: var(--font-md);
color: var(--color-foreground);
cursor: pointer;
background-color: var(--color-neutral-100);
border: 1px solid var(--color-neutral-300);
border-radius: 50%;
transition: 0.2s;
&:hover {
background-color: var(--color-neutral-200);
}
}