From 3fc7b84fc45863e3c4444e0c6d4dbb210c4df059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Sojka?= Date: Sun, 23 Mar 2025 22:24:51 +0100 Subject: [PATCH] add space between page numbers (#2232) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: codecalm Co-authored-by: Paweł Kuna <1282324+codecalm@users.noreply.github.com> --- .changeset/cuddly-panthers-fry.md | 5 +++++ core/scss/ui/_pagination.scss | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 .changeset/cuddly-panthers-fry.md diff --git a/.changeset/cuddly-panthers-fry.md b/.changeset/cuddly-panthers-fry.md new file mode 100644 index 000000000..ed000e818 --- /dev/null +++ b/.changeset/cuddly-panthers-fry.md @@ -0,0 +1,5 @@ +--- +"@tabler/core": patch +--- + +Add space between page numbers in pagination diff --git a/core/scss/ui/_pagination.scss b/core/scss/ui/_pagination.scss index dbd04502b..104480745 100644 --- a/core/scss/ui/_pagination.scss +++ b/core/scss/ui/_pagination.scss @@ -1,5 +1,7 @@ .pagination { + --#{$prefix}pagination-gap: .25rem; user-select: none; + gap: var(--#{$prefix}pagination-gap); } .page-link {