From 21f1acb699912e97141ddf0a0aa807cd5bd9a4e6 Mon Sep 17 00:00:00 2001 From: coon Date: Wed, 29 Nov 2023 15:59:07 +0100 Subject: [PATCH] static: make tables occupy whole width --- static/flexbox/sanic.css | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/static/flexbox/sanic.css b/static/flexbox/sanic.css index addbc13..363bb43 100644 --- a/static/flexbox/sanic.css +++ b/static/flexbox/sanic.css @@ -18,6 +18,12 @@ input { color: white; } +table { + width: 100%; + table-layout: fixed; + border-spacing: 0pt; +} + #flexbox-container { display: flex; flex-direction: column; @@ -88,6 +94,8 @@ input { } #queue { + display: flex; + flex-direction: column; flex-grow: 1; } @@ -98,11 +106,17 @@ input { } #playlist_controls { - flex-grow: 1; + background-color: #171812;; + /* flex-grow: 1; */ + + width: 20%; /* frickel? */ } #playlist_tracklist { - flex-grow: 4; + display: flex; + flex-direction: column; + + width: 80%; /* frickel? */ } #footer {