70 lines
978 B
CSS
70 lines
978 B
CSS
.container {
|
|
width: 100%;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
.container {
|
|
max-width: 540px;
|
|
}
|
|
}
|
|
/* .calenderField {
|
|
display: block !important;
|
|
visibility:hidden
|
|
} */
|
|
@media (min-width: 768px) {
|
|
.container {
|
|
max-width: 950px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.container {
|
|
max-width: 960px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.container {
|
|
max-width: 1280px;
|
|
}
|
|
}
|
|
@media (min-width: 1200px) and (max-width: 1300px) {
|
|
.container {
|
|
max-width: 1200px;
|
|
}
|
|
}
|
|
|
|
.toaster-card {
|
|
position: fixed;
|
|
z-index: 999999;
|
|
pointer-events: none;
|
|
top: 15px;
|
|
right: 15px;
|
|
padding: 10px 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
border-radius: 4px;
|
|
color: white;
|
|
box-shadow: 0 0 12px #999;
|
|
width: 300px;
|
|
}
|
|
|
|
.toaster-card img {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.toast-success {
|
|
background-color: #51a351;
|
|
}
|
|
|
|
.toast-error {
|
|
background-color: #bd362f;
|
|
}
|
|
|
|
.toast-warning {
|
|
background-color: #f89406;
|
|
}
|
|
|