Attachment form and table, MusicXML renderer

This commit is contained in:
2024-11-24 13:37:26 +01:00
parent a347a77e11
commit 02b4c08e7d
12 changed files with 1603 additions and 61 deletions

View File

@@ -1,3 +1,17 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
.sheet-music-display * {
color: black;
stroke: black;
fill: black;
}
@media (prefers-color-scheme: dark) {
.sheet-music-display * {
color: white;
stroke: white;
fill: white;
}
}