[scrobbles] Fix note display to be sticky notes
All checks were successful
build & deploy / test (push) Successful in 1m44s
build & deploy / deploy (push) Successful in 21s

This commit is contained in:
2026-03-24 15:20:03 -04:00
parent 4121915aa3
commit 06acc9ec2b
6 changed files with 58 additions and 7 deletions

View File

@ -167,6 +167,37 @@
box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}
#scrobble-form { width: 100% }
.sticky-notes-container {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.sticky-note {
padding: 8px;
border: 1px solid #ccc;
max-width: 200px;
font-size: 0.9em;
line-height: 1.3;
background: #fff9c4;
}
.sticky-note:nth-child(even) {
background: #ffccbc;
}
.sticky-note:nth-child(3n) {
background: #b3e5fc;
}
.sticky-note:nth-child(4n) {
background: #c8e6c9;
}
.sticky-note:nth-child(5n) {
background: #e1bee7;
}
</style>
{% block head_extra %}{% endblock %}