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} {
@apply inline-block;
@apply relative;
@apply text-xs;
@apply text-sm;
.@{css-prefix}button-group {
@apply block;

View File

@ -195,7 +195,7 @@ export default defineComponent({
return (
<div
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',
state.showSelfIcon && 'leading-4 h-4 [&_svg]:align-top [&_svg]:rotate-0'
]}