From 6f024b0fd3b5912fa1fe628e3254641259f47726 Mon Sep 17 00:00:00 2001 From: troll <my_name_is_troll@protonmail.com> Date: Wed, 25 Jul 2018 14:08:55 +0000 Subject: [PATCH] Update Pagination.vue Fix: issue #451 "Missing cursor on pagination links" --- front/src/components/Pagination.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/front/src/components/Pagination.vue b/front/src/components/Pagination.vue index 255a3a9a..cc5f1716 100644 --- a/front/src/components/Pagination.vue +++ b/front/src/components/Pagination.vue @@ -83,3 +83,11 @@ export default { } } </script> + +<!-- Add "scoped" attribute to limit CSS to this component only --> +<style scoped> +.ui.pagination.menu .item { + cursor: pointer; +} +</style> + -- GitLab