Notification should not hide content according to ux

Issue description:
Notification will hide some content when it popup.

According to ux requirement, we should make it not extend to the whole widh of UI, and should not hide the content.

Fix:
Modify the position from 'absolute' to 'relative', so that it will not hide the content.
This commit is contained in:
Mia ZHOU 2018-07-24 17:56:46 +08:00
parent eafee964c1
commit 2240693a1d

View File

@ -1,9 +1,10 @@
.global-message-alert {
position: absolute;
position: relative;
top: 0;
left: 0;
width: 100%;
z-index: 999;
margin-bottom: 20px;
}
.alert-item {
display: inline-block;