diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f54d57cc8d..66e3a913693 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ The types of changes are: ### Fixed - Stacks that do not have any purposes will no longer render an empty purpose block [#4278](https://github.com/ethyca/fides/pull/4278) +- Forcing hidden sections to use display none [#4299](https://github.com/ethyca/fides/pull/4299) ## [2.22.0](https://github.com/ethyca/fides/compare/2.21.0...2.22.0) diff --git a/clients/fides-js/src/components/fides.css b/clients/fides-js/src/components/fides.css index 9fbe399c5d9..e0f6bb90a71 100644 --- a/clients/fides-js/src/components/fides.css +++ b/clients/fides-js/src/components/fides.css @@ -844,6 +844,10 @@ div#fides-banner-inner .fides-privacy-policy { overflow: hidden; } +.tabpanel-container section[hidden] { + display: none; +} + /* All on off buttons */ .fides-all-on-off-buttons { display: flex;