mirror of
https://github.com/gotson/komga.git
synced 2025-12-22 00:13:30 +01:00
fix(webui): read button link underline on hover
This commit is contained in:
parent
e04ad3c844
commit
863258d8be
1 changed files with 3 additions and 3 deletions
|
|
@ -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"
|
||||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue