21 lines
493 B
CSS
21 lines
493 B
CSS
/* Layout for the tracks page.
|
|
Dead flex/height rules removed — the sticky-footer intent they encoded required
|
|
a height target that was never set; normal block flow is sufficient for a
|
|
paginated gallery. Horizontal inset is owned by MudContainer in TracksGallery. */
|
|
|
|
.tracks-view-container {
|
|
padding: 0;
|
|
}
|
|
|
|
.tracks-content {
|
|
padding-top: 16px;
|
|
}
|
|
|
|
.tracks-footer {
|
|
padding: 8px 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|