# HG changeset patch # User Raphaël Gomès <rgomes@octobus.net> # Date 1657538718 -7200 # Mon Jul 11 13:25:18 2022 +0200 # Node ID 7c7a4bb1cf2af9022c88daacb1271faa8b0fce27 # Parent 39da9ecb254f9532f697925f3509d8e061f8c363 web-ui: fix mobile view of graphs diff --git a/web-ui/src/lib/Benchmark.svelte b/web-ui/src/lib/Benchmark.svelte --- a/web-ui/src/lib/Benchmark.svelte +++ b/web-ui/src/lib/Benchmark.svelte @@ -30,7 +30,7 @@ .graphs { display: grid; gap: 1.5rem; - grid-template-columns: repeat(auto-fit, minmax(500px, max-content)); + grid-template-columns: repeat(auto-fit, minmax(min-content, 500px)); justify-content: center; align-content: center; }