mirror of
https://github.com/remvze/moodist.git
synced 2025-12-19 09:54:17 +00:00
22 lines
456 B
CSS
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);
|
|
}
|
|
}
|