Skip to content

Commit

Permalink
fix(error): Add space around recommended actions
Browse files Browse the repository at this point in the history
Ref #126
  • Loading branch information
Hanziness committed Jan 1, 2022
1 parent 7c746e4 commit f795d1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/error/action.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
:class="[
'transition relative overflow-hidden rounded-lg bg-current outline-current before:block before:absolute before:inset-0 before:transition',
{
'outline outline-offset-2 before:bg-black before:bg-opacity-0 before:hover:bg-opacity-10 before:active:bg-opacity-20 cursor-pointer': state === 'recommended',
'outline outline-offset-2 before:bg-black before:bg-opacity-0 before:hover:bg-opacity-10 before:active:bg-opacity-20 cursor-pointer mx-1': state === 'recommended',
'before:bg-slate-100 before:bg-opacity-70 before:hover:bg-opacity-50 before:active:bg-opacity-30 cursor-pointer': state === 'default',
'opacity-60 cursor-not-allowed': state === 'disabled'
}
Expand Down

0 comments on commit f795d1a

Please sign in to comment.