webpack-bootstrap-ui-kit/src/scss/layout/main/alerts.scss

31 lines
316 B
SCSS
Raw Normal View History

2021-08-09 18:04:09 +02:00
#SiteWideAlerts {
2021-08-18 20:38:12 +02:00
bottom: 0;
position: fixed;
right: 0;
z-index: 99999;
2021-08-09 18:04:09 +02:00
2021-08-18 20:38:12 +02:00
.btn-close {
background: none;
}
2021-08-09 18:04:09 +02:00
2021-08-18 20:38:12 +02:00
.alert {
margin-bottom: 0;
}
2021-08-09 18:04:09 +02:00
}
.alert-offline {
2021-08-18 20:38:12 +02:00
display: none;
2021-08-09 18:04:09 +02:00
}
.is-online {
2021-08-18 20:38:12 +02:00
.alert-offline {
display: none;
}
2021-08-09 18:04:09 +02:00
}
.is-offline {
2021-08-18 20:38:12 +02:00
.alert-offline {
display: flex;
}
2021-08-09 18:04:09 +02:00
}