This commit is contained in:
2024-12-13 08:31:39 +07:00
parent 1ead9da097
commit 5bdf96851e
3554 changed files with 400518 additions and 83328 deletions
@@ -0,0 +1,41 @@
:root {
--swal-orange: #F8BB86;
}
.swal-icon--warning {
border-color: var(--swal-orange);
animation: pulseWarning 0.75s infinite alternate;
/* Exclamation mark */
&__body {
position: absolute;
width: 5px;
height: 47px;
left: 50%;
top: 10px;
border-radius: 2px;
margin-left: -2px;
background-color: var(--swal-orange);
}
&__dot {
position: absolute;
width: 7px;
height: 7px;
border-radius: 50%;
margin-left: -4px;
left: 50%;
bottom: -11px;
background-color: var(--swal-orange);
}
}
@keyframes pulseWarning {
from {
border-color: #F8D486;
}
to {
border-color: var(--swal-orange);
}
}