From 923ab59c5152b93b329e75c1ef21a337a1540de9 Mon Sep 17 00:00:00 2001 From: lmerchant Date: Fri, 10 Jan 2025 17:17:12 -0800 Subject: [PATCH 1/2] style: add flex grid CSS to outer div of barcode buttons to enable wrapping Make the div surrounding all the barcode buttons on the "My Kits" web page a flex grid. Now all the buttons wrap and are responsive. Fixes Issue #323 --- microsetta_interface/templates/kits.jinja2 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/microsetta_interface/templates/kits.jinja2 b/microsetta_interface/templates/kits.jinja2 index 1f776999..e60e4835 100644 --- a/microsetta_interface/templates/kits.jinja2 +++ b/microsetta_interface/templates/kits.jinja2 @@ -23,6 +23,11 @@ .tooltip.bs-tooltip-top .tooltip-arrow::before { border-top-color: #0000ff !important; } + .new_kit_sample_container { + display: flex; + flex-wrap: wrap; + gap: 10px; + }