dcc.Loading childrens not scrollable?

Hi, I recently added a loading spinner to an expandable area of a page and I just noticed that it caused it to become not scrollable if the data goes beyond the bottom of the page (This worked well before).

Unexpanded component (everything below the expand/collapse button is a children of the loading component):

Once expanded I can’t scroll below:

Code is really simple:

html.Button(id="button-decoder-expand", children="Expand/Collapse"),
dcc.Loading(
    id="loading-decoder-detached",
    type="circle",
    children=html.Div(id="decoded-div", className="app-decoder"),
    delay_show=500,
),

Removing the dcc.Loading and moving the div “decoded-div” up fixes the issue, but I’d like to keep the loading spinner if possible.

Is this a bug or did I miss a configuration parameter?