From 34201eeb373a4fa49e6e6a98ce7c67170672c06d Mon Sep 17 00:00:00 2001
From: alex <alex@alexloehr.net>
Date: Sun, 08 Jun 2025 16:23:25 +0000
Subject: [PATCH] adding search
---
vue/src/components/Pagination.vue | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/vue/src/components/Pagination.vue b/vue/src/components/Pagination.vue
index ece7eba..69fc0e5 100644
--- a/vue/src/components/Pagination.vue
+++ b/vue/src/components/Pagination.vue
@@ -70,7 +70,6 @@
<div class="pagination">
<div class="pagination-buttons">
-
<input type="button" @click="goStart()" class="start" value="«">
<input type="button" @click="goPrev()" class="prev" value="‹">
<span class="current">{{ offset }} - {{ offset + limit }} / {{ total }}</span>
@@ -133,7 +132,6 @@
display flex;
flex-direction column
align-items center;
- margin -1em 0 1em 0;
.pagination-buttons
font-size 1.33rem
display flex;
@@ -161,6 +159,11 @@
//all: unset
border none
width 1em
+input[type=button]
+ color rgb(0,0,238)
+ cursor pointer;
+ &:hover
+ background-color #ddd;
button
--
Gitblit v1.8.0