From 013be436d3f384fb4bc81c551bb74189f385804d Mon Sep 17 00:00:00 2001 From: exci Date: Sat, 10 Sep 2022 00:18:56 +0300 Subject: [PATCH] try using grids for the.. grids --- copyparty/web/browser.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/copyparty/web/browser.css b/copyparty/web/browser.css index 0e89cbc6..1715e1aa 100644 --- a/copyparty/web/browser.css +++ b/copyparty/web/browser.css @@ -2893,3 +2893,12 @@ html.d #treepar { margin-top: 1.7em; } } +@supports (display: grid) { + #ggrid { + display: grid; + margin: unset; + padding: unset; + grid-template-columns: repeat(auto-fit,225px); + justify-content: center; + } +}