From 6b69da1e7fee9cdff2225956e0bddf2454d0dcde Mon Sep 17 00:00:00 2001 From: Dan Beghin Date: Wed, 4 Jan 2023 09:44:16 -0600 Subject: [PATCH] fix(paginator): border and inactive color (#20) Add a border to the paginator elements, and better style when inactive. --- _sass/_index.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_sass/_index.scss b/_sass/_index.scss index 2652e51..0dfafa3 100644 --- a/_sass/_index.scss +++ b/_sass/_index.scss @@ -23,6 +23,12 @@ display: inline-flex; align-items: center; gap: 4px; + border: 1px solid; + border-radius: 8px; + } + + span { + opacity: .5; } } }