feature: AudioPlayerBar Layout Enhancements
This commit is contained in:
@@ -80,7 +80,7 @@
|
||||
display: grid;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding-right: 2.5rem; /* clear the abs-positioned PlayerWindowControls */
|
||||
/*padding-right: 2.5rem; !* clear the abs-positioned PlayerWindowControls *!*/
|
||||
}
|
||||
|
||||
::deep .transport-zone { grid-area: transport; }
|
||||
@@ -112,7 +112,19 @@
|
||||
|
||||
/* Narrow (< 600px): transport + volume share the top row; waveform then metadata stack full-width
|
||||
below — the most compressed shape. */
|
||||
@media (max-width: 599.98px) {
|
||||
@media (min-width: 420px) and (max-width: 599.98px) {
|
||||
.player-layout {
|
||||
grid-template-columns: auto 1fr auto;
|
||||
grid-template-areas:
|
||||
"transport . volume"
|
||||
"waveform waveform waveform"
|
||||
"meta meta meta";
|
||||
}
|
||||
}
|
||||
|
||||
/* Very Narrow (< 400px): transport + volume share the top row; waveform then metadata stack full-width
|
||||
below — the most compressed shape. */
|
||||
@media (max-width: 419.98px) {
|
||||
.player-layout {
|
||||
grid-template-columns: auto 1fr auto;
|
||||
grid-template-areas:
|
||||
|
||||
Reference in New Issue
Block a user