Skip to content

Commit

Permalink
fix: button color
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenull committed Nov 6, 2022
1 parent c118e4a commit d3a5bd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ if (isDevelopment) {
template: `
<div class="plugin-git-mask" data-on-click="hidePopup"></div>
<div class="plugin-git-popup flex flex-col">
${buttons.map(button => '<button data-on-click="' + button?.event + '" class="ui__button bg-indigo-600 hover:bg-indigo-700 focus:border-indigo-700 active:bg-indigo-700 text-center text-sm p-1" style="margin: 4px 0;">' + button?.title + '</button>').join('\n')}
${buttons.map(button => '<button data-on-click="' + button?.event + '" class="ui__button bg-indigo-600 hover:bg-indigo-700 focus:border-indigo-700 active:bg-indigo-700 text-center text-sm p-1" style="margin: 4px 0; color: #fff;">' + button?.title + '</button>').join('\n')}
</div>
`,
})
Expand Down

0 comments on commit d3a5bd1

Please sign in to comment.