Skip to content

Commit

Permalink
Fixing spacing issues caused by a CSS reset (#4268)
Browse files Browse the repository at this point in the history
  • Loading branch information
galvana authored Oct 12, 2023
1 parent 44100e2 commit 06fe0c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ The types of changes are:
- Use `stdRetention` when there is not a specific value for a purpose's data retention [#4199](https://github.com/ethyca/fides/pull/4199)
- Updating the unflatten_dict util to accept flattened dict values [#4200](https://github.com/ethyca/fides/pull/4200)
- Minor CSS styling fixes for the consent modal [#4252](https://github.com/ethyca/fides/pull/4252)
- Additional styling fixes for issues caused by a CSS reset [#4268](https://github.com/ethyca/fides/pull/4268)

## [2.21.0](https://github.com/ethyca/fides/compare/2.20.2...2.21.0)

Expand Down
2 changes: 1 addition & 1 deletion clients/fides-js/src/components/fides.css
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ div#fides-banner-inner .fides-privacy-policy {
background-color: var(--fides-overlay-background-dark-color);
border-radius: var(--fides-overlay-component-border-radius);
padding: 1.1em;
margin-bottom: 1em;
margin: 1em 0;
}

.fides-info-box p {
Expand Down
2 changes: 1 addition & 1 deletion clients/fides-js/src/components/tcf/TcfVendors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ const TcfVendors = ({
return (
<div>
{gvlVendor ? <StorageDisclosure vendor={gvlVendor} /> : null}
<div>
<div style={{ marginBottom: "1.1em" }}>
{url?.privacy ? (
<ExternalLink href={url.privacy}>Privacy policy</ExternalLink>
) : null}
Expand Down

0 comments on commit 06fe0c6

Please sign in to comment.