Remove modebar to gain space

When creating a plots for mobile devices, I would like to remove the toolbar to gain space on the right side of my scatter plot.

Any idea on how this could be achieved is appreciated.

Add the following lines in css

.js-plotly-plot .plotly .modebar {
    left: 50%;
    transform: translateX(-50%);
}

Hi @styx242,

you can also adjust the right margin value like:
fig.layout.margin.r = 0