27 lines
463 B
SCSS
27 lines
463 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)*3);
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.following-note_marker{
|
||
|
|
position: absolute;
|
||
|
|
left: calc(var(--indent)*2);
|
||
|
|
}
|
||
|
|
|
||
|
|
.following-note_call{
|
||
|
|
font-size: var(--fs-small);
|
||
|
|
line-height: 1;
|
||
|
|
position: relative;
|
||
|
|
top: -4px;
|
||
|
|
}
|
||
|
|
|