diff options
author | pacien | 2022-11-28 03:03:40 +0100 |
---|---|---|
committer | pacien | 2022-11-28 03:03:40 +0100 |
commit | d84f0f48c9b1dc73ec20a1cf5c31feeb744aa3d9 (patch) | |
tree | a4af5f2863477924a7a37c2fda155f61b2212a15 | |
parent | 711d6a471930ef9caf6b09129226c68f5d74575a (diff) | |
download | ldgallery-d84f0f48c9b1dc73ec20a1cf5c31feeb744aa3d9.tar.gz |
viewer/epub: expand navbar links clickble area
-rw-r--r-- | viewer/src/views/item_handlers/async/AsyncEpubViewer.vue | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/viewer/src/views/item_handlers/async/AsyncEpubViewer.vue b/viewer/src/views/item_handlers/async/AsyncEpubViewer.vue index b02eab3..b5c0cb4 100644 --- a/viewer/src/views/item_handlers/async/AsyncEpubViewer.vue +++ b/viewer/src/views/item_handlers/async/AsyncEpubViewer.vue | |||
@@ -168,9 +168,13 @@ function goToNextSection() { | |||
168 | background-color: $panel-bottom-bgcolor; | 168 | background-color: $panel-bottom-bgcolor; |
169 | color: $panel-bottom-txtcolor; | 169 | color: $panel-bottom-txtcolor; |
170 | 170 | ||
171 | > * { | 171 | > li { |
172 | flex: 1; | 172 | flex: 1; |
173 | text-align: center; | 173 | text-align: center; |
174 | |||
175 | > a { | ||
176 | padding: .5em; | ||
177 | } | ||
174 | } | 178 | } |
175 | } | 179 | } |
176 | </style> | 180 | </style> |