mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 00:44:14 +00:00
17 lines
370 B
CSS
17 lines
370 B
CSS
.button {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
left: 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%;
|
|
}
|