Skip to content

Commit b6f7235

Browse files
committed
fix(Message): 修复 Message 因为设置了高度阻挡了背后元素导致无法点击的问题
close #1425
1 parent 540b338 commit b6f7235

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/message/index.less

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
.l-message {
44
width: 750rpx;
5-
height: 72rpx;
5+
height: 0;
66
border-radius: 0rpx 0rpx 16rpx 16rpx;
77
display: flex;
88
justify-content: center;
@@ -36,6 +36,7 @@
3636

3737
.l-message-show {
3838
transform: translateX(-50%) translateZ(0) translateY(0);
39+
height: 72rpx;
3940
opacity: 1;
4041
}
4142

0 commit comments

Comments
 (0)