From 8c7a543571b1dda93e5f9b580a14d04e3e7a43c5 Mon Sep 17 00:00:00 2001 From: RachelElysia <71795832+RachelElysia@users.noreply.github.com> Date: Wed, 26 Feb 2025 16:07:59 -0500 Subject: [PATCH] Fleet UI: Hide more options button when at larger widths (#26632) --- frontend/components/buttons/ActionButtons/_styles.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/components/buttons/ActionButtons/_styles.scss b/frontend/components/buttons/ActionButtons/_styles.scss index 3c9a41fbda..7842642d26 100644 --- a/frontend/components/buttons/ActionButtons/_styles.scss +++ b/frontend/components/buttons/ActionButtons/_styles.scss @@ -35,5 +35,9 @@ } } } + + @media (min-width: $break-md) { + display: none; + } } }