28 lines
355 B
CSS
28 lines
355 B
CSS
.notifications {
|
|
position: fixed;
|
|
z-index: 9999;
|
|
width: 533px;
|
|
}
|
|
|
|
/* Positioning */
|
|
.notifications.top-right {
|
|
right: 10px;
|
|
top: 25px;
|
|
}
|
|
|
|
.notifications.top-left {
|
|
left: 10px;
|
|
top: 42px;
|
|
|
|
}
|
|
|
|
.notifications.bottom-left {
|
|
left: 1px;
|
|
bottom: 1px;
|
|
}
|
|
|
|
/* Notification Element */
|
|
.notifications > div {
|
|
position: relative;
|
|
margin: 0;
|
|
} |