Skip to content

Commit

Permalink
Use inheritance in .scss file
Browse files Browse the repository at this point in the history
  • Loading branch information
sponglord committed Dec 16, 2024
1 parent 38ec8f2 commit 6beee1b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@
.adyen-checkout__radio_group{
margin-top: token(spacer-050);
}
}

.adyen-checkout__fieldset--dual-brand-switcher .adyen-checkout__fieldset__title {
padding-bottom: 0;
.adyen-checkout__fieldset__title {
padding-bottom: 0;
}
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { h } from 'preact';
import cx from 'classnames';
import './RadioGroupExtended.scss';
import { RadioGroupProps } from './types';
import { getUniqueId } from '../../../../utils/idGenerator';
import { useCoreContext } from '../../../../core/Context/CoreProvider';
import RadioButtonIcon from './RadioButtonIcon';
import cx from 'classnames';

export default function RadioGroupExtended(props: RadioGroupProps) {
const { items, name, onChange, value, isInvalid, uniqueId, ariaLabel, showRadioIcon = true, style = 'classic' } = props;
Expand Down

0 comments on commit 6beee1b

Please sign in to comment.