From 37f2a4357abf25a70ce1cd27b9fcfd7eff108729 Mon Sep 17 00:00:00 2001 From: Jeremy Pople Date: Thu, 14 Nov 2024 15:21:18 -0600 Subject: [PATCH 1/2] add min-height to secondary actions when brand is present --- clients/fides-js/src/components/ConsentButtons.tsx | 2 +- clients/fides-js/src/components/fides.css | 13 +++++++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/clients/fides-js/src/components/ConsentButtons.tsx b/clients/fides-js/src/components/ConsentButtons.tsx index b065184ed7..ea19b10cee 100644 --- a/clients/fides-js/src/components/ConsentButtons.tsx +++ b/clients/fides-js/src/components/ConsentButtons.tsx @@ -111,7 +111,7 @@ export const ConsentButtons = ({ : "fides-banner-button-group fides-banner-secondary-actions" }${includeLanguageSelector ? " fides-button-group-i18n" : ""}${ includePrivacyPolicyLink ? " fides-button-group-privacy-policy" : "" - }`} + }${includeBrandLink ? " fides-button-group-brand" : ""}`} > {includeLanguageSelector && ( Date: Thu, 14 Nov 2024 15:28:57 -0600 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ba0f33174..00816fca25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,6 +42,7 @@ The types of changes are: ### Fixed - Use BlueConic Profile API correctly. [#5487](https://github.com/ethyca/fides/pull/5487) +- Fixed a bug where branding link was sometimes misaligned [#5496](https://github.com/ethyca/fides/pull/5496) ## [2.49.0](https://github.com/ethyca/fidesplus/compare/2.48.2...2.49.0)