Open alebabai opened 6 months ago
If two chords are in a row and no text between them, then they will merge in the rendered html.
В`[E]`сё идет `[Am]`по пла`[F]`ну.`[C]` `[E]`
For now I found two possible approaches for chords rendering:
.lyrics .chord { position: absolute; margin-top: -1.5rem; }
.lyrics .chord { position: relative; display: inline-block; top: -1.5em; width: 0; }
And I don't know how to separate them without creating a gap between words.
Possible workarounds:
`[Am C]`
what
If two chords are in a row and no text between them, then they will merge in the rendered html.
why
For now I found two possible approaches for chords rendering:
And I don't know how to separate them without creating a gap between words.