fix:修改默认字体大小 (#3629)

This commit is contained in:
liukun 2025-07-31 01:45:26 -07:00 committed by GitHub
parent 919f9bbffb
commit db3f74b418
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
.@{dropdown-prefix-cls} { .@{dropdown-prefix-cls} {
@apply inline-block; @apply inline-block;
@apply relative; @apply relative;
@apply text-xs; @apply text-sm;
.@{css-prefix}button-group { .@{css-prefix}button-group {
@apply block; @apply block;

View File

@ -195,7 +195,7 @@ export default defineComponent({
return ( return (
<div <div
class={[ class={[
'relative inline-block [&>span:nth-of-type(1)]:text-color-brand-focus [&>span:nth-of-type(1)]:text-sm sm:[&>span:nth-of-type(1)]:text-xs', 'relative inline-block [&>span:nth-of-type(1)]:text-color-brand-focus [&>span:nth-of-type(1)]:text-sm sm:[&>span:nth-of-type(1)]:text-sm',
disabled && '[&>span:nth-of-type(1)]:text-color-brand-focus', disabled && '[&>span:nth-of-type(1)]:text-color-brand-focus',
state.showSelfIcon && 'leading-4 h-4 [&_svg]:align-top [&_svg]:rotate-0' state.showSelfIcon && 'leading-4 h-4 [&_svg]:align-top [&_svg]:rotate-0'
]} ]}