static: make tables occupy whole width

This commit is contained in:
coon 2023-11-29 15:59:07 +01:00
parent e8d8e1ef24
commit 54130889e9

View file

@ -18,6 +18,12 @@ input {
color: white; color: white;
} }
table {
width: 100%;
table-layout: fixed;
border-spacing: 0pt;
}
#flexbox-container { #flexbox-container {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -88,6 +94,8 @@ input {
} }
#queue { #queue {
display: flex;
flex-direction: column;
flex-grow: 1; flex-grow: 1;
} }
@ -98,11 +106,16 @@ input {
} }
#playlist_controls { #playlist_controls {
flex-grow: 1; background-color: #171812;;
/* flex-grow: 1; */
width: 20%; /* frickel? */
} }
#playlist_tracklist { #playlist_tracklist {
flex-grow: 4; display: flex;
flex-direction: column;
width: 80%; /* frickel? */
} }
#footer { #footer {