Fixed
/** Apply blur by default **/
.App-header, .App-navigation {
background: rgba(0, 0, 0, 0.5) !important;
backdrop-filter: blur(15px) saturate(150%);
}
/** Or apply blur only when the page is scrolled **/
.scrolled .App-header, .scrolled .App-navigation {
background: rgba(0, 0, 0, 0.5) !important;
backdrop-filter: blur(15px) saturate(150%);
}
If you need to change the background color, don't forget to add opacity.