I'm trying to add notes and messages to a sequence diagram and I'd like to specify a verticle spacing of 0px between two messages.
@startuml
participant A
participant B
participant C
note over A: "State: Initial"
||0||
note over B: "State: Initial"
||0||
note over C: "State: Initial"
A -> B: Send Message
||0||
C -> B: Another Simultaneous Message
@enduml
participant B