Skip to content

Commit

Permalink
rename css style
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoskolodny committed Jun 17, 2024
1 parent aee09cc commit b480d5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/button-layout.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const link = style([
},
]);

export const linkWithTwoButtons = style([
export const linkInNewLine = style([
linkBase,
{
selectors: {
Expand Down
2 changes: 1 addition & 1 deletion src/button-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const ButtonLayout: React.FC<ButtonLayoutProps> = ({

const linkContainer = link ? (
<div
className={classnames(numberOfButtons !== 1 ? styles.linkWithTwoButtons : styles.link)}
className={classnames(numberOfButtons !== 1 ? styles.linkInNewLine : styles.link)}
data-link="true"
>
{link}
Expand Down

0 comments on commit b480d5c

Please sign in to comment.