From e6e2653050475f9d36d88bcd8afb43c340c4b8a4 Mon Sep 17 00:00:00 2001 From: "Abdallah A. Zaqout" <26047413+zaqoutabed@users.noreply.github.com> Date: Thu, 12 Jan 2023 21:33:06 +0300 Subject: [PATCH] fix: add custom-scroll border to right for RTL --- src/styles/index.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/index.css b/src/styles/index.css index 3c9776d2..2b7dec95 100644 --- a/src/styles/index.css +++ b/src/styles/index.css @@ -176,3 +176,7 @@ input[type='number']::-webkit-inner-spin-button { [dir="rtl"] .rtl-rotate-180{ transform: rotate(180deg); } + +[dir="rtl"] .custom-scroll::-webkit-scrollbar-track:vertical { + border-right: solid 1px theme('colors.gray.200'); +}