From b6a94b874ed01956c46cb5ba165d19f2c8a711b9 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Tue, 26 Nov 2024 15:02:59 +0300 Subject: [PATCH] Fixed #6790 --- apps/showcase/doc/theming/styled/customization/ExtendDoc.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/showcase/doc/theming/styled/customization/ExtendDoc.vue b/apps/showcase/doc/theming/styled/customization/ExtendDoc.vue index cb6c1bc29..15bddb4f8 100644 --- a/apps/showcase/doc/theming/styled/customization/ExtendDoc.vue +++ b/apps/showcase/doc/theming/styled/customization/ExtendDoc.vue @@ -29,8 +29,7 @@ const MyPreset = definePreset(Aura, { myCheckedDisabledBackground: '{primary.color}' } } - }, - css: ({ dt }) => \` + css: ({ dt }) => \` .p-toggleswitch.p-disabled .p-toggleswitch-slider { opacity: \${dt('toggleswitch.my.disabled.opacity')}; } @@ -39,6 +38,7 @@ const MyPreset = definePreset(Aura, { background: \${dt('toggleswitch.my.checked.disabled.background')}; } \` + }, } }); `