Skip to content

Commit

Permalink
fix: better text colour on red button
Browse files Browse the repository at this point in the history
  • Loading branch information
favna committed Jul 23, 2024
1 parent d7bdc0f commit fea28a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/modals/review.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
</discord-messages>
</div>
<div class="mt-5 grid w-full grid-cols-1 gap-2 lg:grid-cols-2 lg:gap-4">
<button aria-label="Cancel" type="button" class="btn btn-error" @click="emits('close-modal')">Cancel</button>
<button aria-label="Cancel" type="button" class="btn btn-error text-white" @click="emits('close-modal')">Cancel</button>
<button
v-show="status !== 'pending' && !error && data !== null"
aria-label="Confirm and post"
type="button"
class="btn btn-primary"
class="btn btn-primary text-white"
@click="handleConfirm"
>
Confirm
Expand Down

0 comments on commit fea28a5

Please sign in to comment.