52 lines
783 B
HTML
52 lines
783 B
HTML
.chart {
|
|
height:280px;
|
|
}
|
|
|
|
.notification {
|
|
bottom: 0;
|
|
position: fixed;
|
|
z-index:99;
|
|
|
|
width:100%;
|
|
min-height:80px;
|
|
|
|
display: block;
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.notification-toast-header {
|
|
color: #ffffff;
|
|
background-color:#FFA000;
|
|
}
|
|
.notification-toast-message {
|
|
color: #212121;
|
|
background-color: #FFECB3;
|
|
}
|
|
.notification-error-header {
|
|
color: #ffffff;
|
|
background-color: #D32F2F;
|
|
}
|
|
.notification-error-message {
|
|
color: #212121;
|
|
background-color: #FFECB3;
|
|
}
|
|
.notification-header {
|
|
position:relative;
|
|
min-height: 26px;
|
|
padding:2px;
|
|
}
|
|
|
|
.notification-header-content {
|
|
width:90%;
|
|
font-weight:bold;
|
|
}
|
|
|
|
.notification-message {
|
|
min-height:54px;
|
|
padding-left:4px;
|
|
padding-right:4px;
|
|
padding-top:2px;
|
|
padding-bottom:2px;
|
|
}
|
|
|