# HG changeset patch
# User Raphaël Gomès <rgomes@octobus.net>
# Date 1657581801 -7200
#      Tue Jul 12 01:23:21 2022 +0200
# Node ID 092eb1ea1a3bf2a5cdeb8257346a43d2d3be7d89
# Parent  c36860b92f2295f3e832514e630982bdb1891a0b
web-ui: make benchmark name stick to the top of the screen

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
@@ -31,6 +31,11 @@
 </div>
 
 <style>
+    h2 {
+        position: sticky;
+        top: 0;
+        background-color: white;
+    }
     .graphs {
         display: grid;
         gap: 1.5rem;