Skip to content

Commit 44bad19

Browse files
authored
fix(tooltip): fix tooltip's box-shadow and invalid text of form-item's style (#3420)
* fix(tooltip): fix tooltip's box-shadow and invalid text of form-item's style * fix(theme-saas): fix
1 parent 21a23b3 commit 44bad19

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/theme-saas/src/tooltip/index.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
@apply ~'z-[2000]';
3030
word-wrap: break-word;
3131
@apply rounded;
32-
@apply shadow;
32+
@apply shadow-md;
3333

3434
.popper__arrow,
3535
.popper__arrow::after {

packages/theme-saas/theme/theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -972,7 +972,7 @@
972972
"boxShadow": {
973973
"--tiny-boxShadow-sm": "0px 1px 6px 0px rgba(0, 0, 0, 0.08)",
974974
"--tiny-boxShadow-DEFAULT": "0px 4px 12px 0px rgba(0, 0, 0, 0.08)",
975-
"--tiny-boxShadow-md": "1px 4px 12px 0px rgba(0, 0, 0, 0.16)",
975+
"--tiny-boxShadow-md": "0 4px 12px 0px rgba(0, 0, 0, 0.16)",
976976
"--tiny-boxShadow-lg": "0px 8px 24px 0px rgba(0, 0, 0, 0.16)",
977977
"--tiny-boxShadow-xl": "0px 16px 48px 0px rgba(0, 0, 0, 0.16)",
978978
"--tiny-boxShadow-2xl": "0px 24px 40px 0px rgba(0, 0, 0, 0.12)",

packages/vue/src/form-item/src/mobile-first.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
<div
121121
:class="
122122
m(
123-
'relative sm:absolute left-0 bottom-1 sm:-bottom-4 text-color-error text-xs leading-4 line-clamp-3 sm:line-clamp-1 break-all',
123+
'sm:absolute left-0 bottom-1 sm:-bottom-4 text-color-error text-xs leading-4 line-clamp-3 sm:line-clamp-1 break-all',
124124
(typeof inlineMessage === 'boolean' && inlineMessage) || state.inlineMessage
125125
? 'relative top-auto left-auto inline-block'
126126
: ''

0 commit comments

Comments
 (0)