Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a few CSS classes to help with styling FidesJS button groups #4789

Merged
merged 3 commits into from
Apr 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/fides-js/src/components/ConsentButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const ConsentButtons = ({
<LanguageSelector i18n={i18n} options={options} />
)}
{!!onManagePreferencesClick && (
<div className="fides-banner-button-group">
<div className="fides-banner-button-group fides-manage-preferences-button-group">
<Button
buttonType={isMobile ? ButtonType.SECONDARY : ButtonType.TERTIARY}
label={i18n.t("exp.privacy_preferences_link_label")}
Expand All @@ -52,7 +52,7 @@ export const ConsentButtons = ({
{includePrivacyPolicy && <PrivacyPolicyLink i18n={i18n} />}
<div
className={
isInModal ? "fides-modal-button-group" : "fides-banner-button-group"
isInModal ? "fides-modal-button-group" : "fides-banner-button-group fides-banner-primary-actions"
}
>
{firstButton}
Expand Down
Loading