Scrollbar gutter
When no scrollbar is present, this CSS property it adds a gutter (like a padding). This prevents tha layout from shifting.
html {
scrollbar-gutter: stable;
/* also adds it to the other edge*/
scrollbar-gutter: stable both-edges;
}