From e7cecc3085fb740a03cdfe404423cb88118a1afd Mon Sep 17 00:00:00 2001 From: Andrew Mellor Date: Thu, 23 Apr 2026 13:57:41 +0100 Subject: [PATCH] Enroll page media screen max width updated (#43666) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Related issue:** Resolves #41568 # Checklist for submitter If some of the following don't apply, delete the relevant line. - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/guides/committing-changes.md#changes-files) for more information. ## Testing - [x] QA'd all new/changed functionality manually Localhost pixel 9pro xl emulation ## Summary by CodeRabbit * **Style** * Adjusted the enrollment page responsive layout so the enroll button renders at full width on larger-resolution mobile and medium screens. * Increased spacing between device instructions and the enrollment action to improve layout clarity. * Visual-only change — no functional or behavioral modifications to the enrollment flow. --- ...ge-enroll-button-update-to-full-width-for-larger-res-mobiles | 1 + frontend/templates/enroll-ota.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changes/41568-enroll-page-enroll-button-update-to-full-width-for-larger-res-mobiles diff --git a/changes/41568-enroll-page-enroll-button-update-to-full-width-for-larger-res-mobiles b/changes/41568-enroll-page-enroll-button-update-to-full-width-for-larger-res-mobiles new file mode 100644 index 0000000000..e4376bbc45 --- /dev/null +++ b/changes/41568-enroll-page-enroll-button-update-to-full-width-for-larger-res-mobiles @@ -0,0 +1 @@ +- Enrolment page enroll button updated to render full screen width for larger resolution mobile devices diff --git a/frontend/templates/enroll-ota.html b/frontend/templates/enroll-ota.html index f1ca23677c..bee39c0473 100644 --- a/frontend/templates/enroll-ota.html +++ b/frontend/templates/enroll-ota.html @@ -184,7 +184,7 @@ text-align: center; } - @media screen and (max-width: 430px) { + @media screen and (max-width: 1344px) and (pointer: coarse) { .device-instructions-content { gap: 24px; }