bulma-addons
Version:
Addons for Bulma CSS framework
57 lines (51 loc) • 829 B
CSS
.notification.is-top-left {
width: 320px;
margin: 1em;
position: fixed;
top: 0;
left: 0;
z-index: 40;
}
.notification.is-top-right {
width: 320px;
margin: 1em;
position: fixed;
top: 0;
right: 0;
z-index: 40;
}
.notification.is-top-center {
width: 320px;
margin: 1em;
position: fixed;
top: 0;
left: 50%;
margin-left: -160px;
z-index: 40;
}
.notification.is-bottom-left {
width: 320px;
margin: 1em;
position: fixed;
bottom: 0;
left: 0;
z-index: 40;
}
.notification.is-bottom-right {
width: 320px;
margin: 1em;
position: fixed;
bottom: 0;
right: 0;
z-index: 40;
}
.notification.is-bottom-center {
width: 320px;
margin: 1em;
position: fixed;
bottom: 0;
left: 50%;
margin-left: -160px;
z-index: 40;
}
/*# sourceMappingURL=notification-helper.css.map */