From b14c0a2d23482c2afd77f22fe1646b86b5150281 Mon Sep 17 00:00:00 2001
From: alex <alex@alexloehr.net>
Date: Fri, 06 Jun 2025 16:17:33 +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