feat: note creator button on deck

This commit is contained in:
2023-10-16 14:41:55 +01:00
parent 65552e126b
commit f0110e9009
9 changed files with 88 additions and 82 deletions

View File

@ -0,0 +1,20 @@
.note-create-button {
width: 48px;
height: 48px;
color: white;
background: linear-gradient(90deg, rgba(239, 150, 68, 1) 0%, rgba(123, 65, 246, 1) 100%);
border: none;
border-radius: 100%;
position: fixed;
bottom: 40px;
right: calc(((100vw - 640px) / 2) - 75px);
display: flex;
align-items: center;
justify-content: center;
}
@media (max-width: 768px) {
.note-create-button {
right: 16px;
}
}