Skip to content

Commit

Permalink
Running lint --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr. Lint-a-lot committed Sep 22, 2023
1 parent 15311eb commit b625060
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ type Props = {
};

const StyledDropdownMenu = styled.ul.attrs(() => ({
className: 'dropdown-menu', /* stylelint-disable-line property-no-unknown */
className: 'dropdown-menu' /* stylelint-disable-line property-no-unknown*/
}))<{ $show: boolean, $zIndex: number, $minWidth: number }>(({ $show, theme, $zIndex, $minWidth }) => css`
display: ${$show ? 'block' : 'none'};
color: ${theme.colors.variant.dark.default};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ type FieldElementProps = {
};

const FieldElement = styled.span.attrs({
className: 'field-element', /* stylelint-disable-line property-no-unknown */
className: 'field-element' /* stylelint-disable-line property-no-unknown*/
})<FieldElementProps>(({ $active, $disabled, theme }) => css`
color: ${$active ? theme.colors.variant.info : 'currentColor'};
opacity: ${$disabled ? '0.3' : '1'};
Expand Down

0 comments on commit b625060

Please sign in to comment.