Skip to content

Commit 37d152f

Browse files
committed
fix(tooltip): fix tooltip's box-shadow and invalid text of form-item's style
1 parent d04efe4 commit 37d152f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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/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)