From 39f5583e009b66a95417c4f9fbffadd3b5df8081 Mon Sep 17 00:00:00 2001 From: jacobshandling <61553566+jacobshandling@users.noreply.github.com> Date: Wed, 3 Jul 2024 09:37:30 -0700 Subject: [PATCH] UI - Align "View all hosts" links on the Software page (#20182) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Addresses #20077 Screenshot 2024-07-02 at 4 59 42 PM Screenshot 2024-07-02 at 4 59 37 PM - [x] Changes file added for user-visible changes in `changes/`, - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling --- changes/20077-align-view-all-hosts-link-sw-page | 1 + .../SoftwarePage/SoftwareTitles/SoftwareTable/_styles.scss | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 changes/20077-align-view-all-hosts-link-sw-page diff --git a/changes/20077-align-view-all-hosts-link-sw-page b/changes/20077-align-view-all-hosts-link-sw-page new file mode 100644 index 0000000000..5dfd1bd2e6 --- /dev/null +++ b/changes/20077-align-view-all-hosts-link-sw-page @@ -0,0 +1 @@ +- Align the "View all hosts" links in the Software titles and versions tables. diff --git a/frontend/pages/SoftwarePage/SoftwareTitles/SoftwareTable/_styles.scss b/frontend/pages/SoftwarePage/SoftwareTitles/SoftwareTable/_styles.scss index c005ead615..0727dfe0bd 100644 --- a/frontend/pages/SoftwarePage/SoftwareTitles/SoftwareTable/_styles.scss +++ b/frontend/pages/SoftwarePage/SoftwareTitles/SoftwareTable/_styles.scss @@ -153,4 +153,10 @@ overflow-x: auto; } } + .view-all-hosts { + &__cell { + display: flex; + justify-content: flex-end; + } + } }