Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/theme-saas/src/amount/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@
.popover-left {
@apply grow-0 shrink-0 ~'basis-[auto]';
@apply mr-2;
@apply ~'w-1/5';
width: 46px;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The change from @apply ~'w-1/5' to width: 46px; and adding @apply break-keep; seems to address the label wrapping issue. Ensure that this fixed width does not cause layout issues in different contexts or screen sizes.

@apply break-keep;
}

.popover-right:not(.@{input-prefix-cls}-prefix):not(.@{input-prefix-cls}-suffiX) {
Expand Down
Loading