Skip to content

Commit

Permalink
fix: alignment issue #88 #89
Browse files Browse the repository at this point in the history
  • Loading branch information
unimu-cic committed Nov 21, 2023
1 parent 0578c63 commit ced055e
Showing 1 changed file with 32 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,42 @@ onUpdated(() => {
border-right-width: 7px;
}
.occurrence .interaction.sync.self {
border-left-width: 7px;
}
.occurrence {
.interaction.sync.self {
border-left-width: 7px;
}
.interaction.async {
border-right-width: 0;
}
}
.occurrence {
.occurrence {
.interaction.sync.self {
border-left-width: 7px;
}
.interaction.async {
border-right-width: 7px;
}
}
}
.interaction.sync.self {
border-left-width: 0;
}
.interaction.async {
border-left-width: 8px;
}
.interaction.sync.right-to-left {
/* This border width configuration make sure the content width is
the same as from the source occurrence's right border to target
occurrence's left boarder (boarder not inclusive).*/
border-right-width: 0;
border-right-width: 7px;
border-left-width: 7px;
}
Expand Down

0 comments on commit ced055e

Please sign in to comment.