fix: add height:100% to all views missing it — eliminates top gap
Views with contain:layout in shadow DOM need explicit height:100% on :host so their internal flex layout fills the parent's flex space. Without it, the component doesn't know its height and the internal content doesn't stretch to fill the panel. Added height:100% to: cover-grid, artists-view, genres-view, playlist-view, track-list, config-page (also box-sizing). explore-view and detail views already had it.
This commit is contained in:
@@ -224,6 +224,7 @@ export class ArtistsView
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
contain: layout style;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user