27 lines
479 B
SCSS
27 lines
479 B
SCSS
.container-following-note{
|
|
font-size: var(--fs-small);
|
|
line-height: calc(var(--baseline)*0.8);
|
|
// padding-left: var(--indent);
|
|
position: relative;
|
|
|
|
columns: 2;
|
|
}
|
|
|
|
.body_note{
|
|
padding-left: calc(var(--indent)*1);
|
|
position: relative;
|
|
}
|
|
|
|
.following-note_marker{
|
|
position: absolute;
|
|
// left: calc(var(--indent)*2);
|
|
left: 0;
|
|
}
|
|
|
|
.following-note_call{
|
|
font-size: var(--fs-small);
|
|
line-height: 1;
|
|
position: relative;
|
|
top: -4px;
|
|
}
|
|
|