Skip to content

Commit

Permalink
add missing span
Browse files Browse the repository at this point in the history
  • Loading branch information
opauloh committed Oct 5, 2020
1 parent 8c52688 commit 9b1477f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/templates/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const generate = ({ title, description, cards, action }) => {
color={pallete.primary}
key={idx}
href={btn.href}>
{btn.name}
<span className="button_text">{btn.name}</span>
</Button>
);
default:
Expand All @@ -99,7 +99,7 @@ export const generate = ({ title, description, cards, action }) => {
backgroundColor={pallete.primary}
key={idx}
href={btn.href}>
{btn.name}
<span className="button_text">{btn.name}</span>
</Button>
);
}
Expand Down

0 comments on commit 9b1477f

Please sign in to comment.