Skip to content

Commit

Permalink
💄 Use a color for nav hover instead of font-weight. Fixes #64.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackmcdade committed Jul 2, 2019
1 parent 435c4eb commit dd5dda4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/js/components/UpdatesBadge.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<span v-if="count" class="badge-updates">
<span v-if="count" class="badge-sm bg-red">
{{ count }}
</span>
</template>
Expand Down
2 changes: 1 addition & 1 deletion resources/sass/components/nav-main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
transition: all .08s ease-in-out;

&:hover {
@apply font-medium text-grey-90;
@apply text-blue;
}

i {
Expand Down

0 comments on commit dd5dda4

Please sign in to comment.