@yeeyoon/library 2.4.2 → 2.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,13 +22,18 @@
|
|
22
22
|
border: 1px solid #f0f0f0;
|
23
23
|
border-bottom-right-radius: 8px;
|
24
24
|
border-bottom-left-radius: 8px;
|
25
|
-
|
25
|
+
padding-bottom: 40px;
|
26
26
|
:global {
|
27
27
|
.ant-pro-list-row-description {
|
28
28
|
text-align: left;
|
29
29
|
}
|
30
30
|
}
|
31
31
|
}
|
32
|
+
&__see-all {
|
33
|
+
position: absolute;
|
34
|
+
left: 0;
|
35
|
+
bottom: 0;
|
36
|
+
}
|
32
37
|
}
|
33
38
|
|
34
39
|
// body {
|
@@ -116,7 +116,7 @@ const RecentNotification = (props) => {
|
|
116
116
|
setMsgListShow(true);
|
117
117
|
}}
|
118
118
|
onMouseLeave={() => {
|
119
|
-
setMsgListShow(false);
|
119
|
+
// setMsgListShow(false);
|
120
120
|
}}
|
121
121
|
>
|
122
122
|
{/* <Tooltip title="消息中心"> */}
|
@@ -161,14 +161,6 @@ const RecentNotification = (props) => {
|
|
161
161
|
},
|
162
162
|
}}
|
163
163
|
/>
|
164
|
-
{/* <p
|
165
|
-
className={styles['notification-container__see-all']}
|
166
|
-
onClick={() => {
|
167
|
-
window.open(getMessageCenterRedirectUrl(), '_blank');
|
168
|
-
}}
|
169
|
-
>
|
170
|
-
查看全部消息
|
171
|
-
</p> */}
|
172
164
|
<Button
|
173
165
|
block
|
174
166
|
type="primary"
|
package/lib/config/env.js
CHANGED