27 lines
437 B
CSS
27 lines
437 B
CSS
|
.alert[id^=success-alert] {
|
|||
|
background-color: #3AB14D;
|
|||
|
}
|
|||
|
|
|||
|
.alert[id^=danger-alert] {
|
|||
|
background-color: #dc3545;
|
|||
|
}
|
|||
|
|
|||
|
.alert[id^=tip-alert] {
|
|||
|
background-color: #498ae5;
|
|||
|
}
|
|||
|
|
|||
|
.yt-alert {
|
|||
|
display: none;
|
|||
|
position: fixed;
|
|||
|
z-index: 3000;
|
|||
|
bottom: 2%;
|
|||
|
right: 2%;
|
|||
|
width: 300px;
|
|||
|
background-color: #dc3545;
|
|||
|
color: white;
|
|||
|
border-radius:5px;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
gap: 7px;
|
|||
|
}
|