Skip to content

Commit

Permalink
fix(webui): read button link underline on hover
Browse files Browse the repository at this point in the history
  • Loading branch information
gotson committed Jul 5, 2020
1 parent e04ad3c commit 863258d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions komga-webui/src/components/ItemCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@

<!-- Description-->
<template v-if="!thumbnailOnly">
<router-link :to="to">
<router-link :to="to" class="link-underline">
<v-card-subtitle
v-line-clamp="2"
v-bind="subtitleProps"
Expand Down Expand Up @@ -286,11 +286,11 @@ export default Vue.extend({
z-index: 2;
}
.item-card a {
.link-underline {
text-decoration: none;
}
.item-card a:hover {
.link-underline:hover {
text-decoration: underline;
text-decoration-color: black;
}
Expand Down

0 comments on commit 863258d

Please sign in to comment.