From bd0a6a108549a13ded03841ca5af717232c63990 Mon Sep 17 00:00:00 2001 From: Cagatay Civici Date: Thu, 8 Feb 2024 01:38:31 +0300 Subject: [PATCH] Update border radius --- components/lib/theme/aura/splitter/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/lib/theme/aura/splitter/index.js b/components/lib/theme/aura/splitter/index.js index bde7878f0..2ac1f8494 100644 --- a/components/lib/theme/aura/splitter/index.js +++ b/components/lib/theme/aura/splitter/index.js @@ -5,7 +5,7 @@ export default { flex-wrap: nowrap; border: 1px solid var(--p-dark-surface-700, var(--p-surface-200)); background: var(--p-dark-surface-900, var(--p-surface-0)); - border-radius: 6px; + border-radius: var(--p-border-radius); color: var(--p-text-color); } @@ -24,7 +24,7 @@ export default { } .p-splitter-gutter-handle { - border-radius: 6px; + border-radius: var(--p-border-radius); background: transparent; outline-color: transparent; }