Backlinks in document: Fix/float embedded backlinks above the note

Use case or problem

The "Backlinks in document" embed at the bottom of each note to float above the content in a file so that it is at a fixed position, allowing the user to scroll down/into or up/out from the backlinks section. Ideally this could also be colour-differentiated if desired.

Proposed solution

@sailKite wrote a great snippet for me which achieves this but it is so simple and functional that I think it merits consideration as a core feature. See screen recording:

Current workaround (optional)

The below snippet from @sailKite
/* stick backlinks in document to bottom */
.cm-sizer > .embedded-backlinks,
.mod-footer:has(> .embedded-backlinks) {
    --backlinks-height: 200px;
    position: sticky;
    bottom: 0;
    width: 100%;
    min-height: unset !important;
    max-height: var(--backlinks-height);
    background-color: var(--background-primary);
    overflow-y: visible;

    & > .backlink-pane,
    & > .embedded-backlinks > .backlink-pane {
        overflow-y: scroll;
        max-height: var(--backlinks-height);

        &::-webkit-scrollbar {
            width: 0px;
        }
    }

    &::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 32px;
        top: 100%;
        background-color: var(--background-primary);
    }
}
.mod-footer > .embedded-backlinks {
    min-height: unset !important;
}

Related feature requests (optional)