Browse Source
Merge branch 'vbenjs:main' into main
pull/8188/head
zhb410181
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
2 deletions
-
packages/@core/ui-kit/shadcn-ui/src/components/segmented/segmented.vue
-
packages/@core/ui-kit/shadcn-ui/src/ui/tabs/TabsList.vue
|
|
|
@ -46,7 +46,7 @@ function activeClass(tab: string): string[] { |
|
|
|
<Tabs v-model="activeTab" :default-value="getDefaultValue"> |
|
|
|
<TabsList |
|
|
|
:style="tabsStyle" |
|
|
|
class="bg-accent outline-heavy! relative grid w-full outline!" |
|
|
|
class="bg-accent outline-heavy! relative grid w-full outline-2!" |
|
|
|
> |
|
|
|
<TabsIndicator :style="tabsIndicatorStyle" /> |
|
|
|
<template v-for="tab in tabs" :key="tab.value"> |
|
|
|
|
|
|
|
@ -21,7 +21,7 @@ const delegatedProps = reactiveOmit(props, 'class'); |
|
|
|
v-bind="delegatedProps" |
|
|
|
:class=" |
|
|
|
cn( |
|
|
|
'bg-muted text-muted-foreground inline-flex h-9 w-fit items-center justify-center rounded-lg p-1 -mx-1', |
|
|
|
'bg-muted text-muted-foreground inline-flex h-9 w-fit items-center justify-center rounded-md p-1', |
|
|
|
props.class, |
|
|
|
) |
|
|
|
" |
|
|
|
|