mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-23 02:35:17 +01:00
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:
parent
eafee964c1
commit
2240693a1d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user