From b915c8fceb74ee302453350fd678ee46567e89dc Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Sat, 24 Jan 2026 05:45:35 -0600 Subject: [PATCH] fix: address issue ilmanian reported with overflow issues --- src/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/style.css b/src/style.css index f8ae66d..e2917d4 100644 --- a/src/style.css +++ b/src/style.css @@ -98,11 +98,13 @@ main { .command-card { display: flex; + flex-wrap: wrap; gap: 1rem; padding: 1rem; border: 1px solid var(--accent-color); border-radius: 1rem; background-color: #323232; + overflow: hidden; } .command-card .left { @@ -121,6 +123,7 @@ main { .command-card .right .aliases { display: flex; + flex-wrap: wrap; gap: 0.5rem; } @@ -131,6 +134,7 @@ main { .command-alias code { display: flex; + flex-shrink: 0; gap: 0.25rem; color: var(--accent-color); background-color: var(--bg-color);