Describe the bug
When using the banner feature from the Pretty Properties plugin, the Page View appears on top of the banner correctly, however the background color does not fit the shape or border radius, so it doesn't look great. I fixed it with some CSS snippets below applying the background color to each of the views individually rather than the entire div.
CSS Fix
This is the CSS snippet I'm using right now to fix how the background color looks.
.BC-page-views {
background-color: transparent !important;
}
.BC-trail-view {
background-color: var(--background-primary);
}
.BC-prev-next-view .flex-col {
background-color: var(--background-primary);
}
Before

After
