zmiany w css

This commit is contained in:
Mateusz Gruszczyński
2025-07-07 23:53:22 +02:00
parent 8152019632
commit f9b655defd
6 changed files with 48 additions and 15 deletions

View File

@@ -172,4 +172,24 @@ input.form-control {
.bg-dark .form-control::placeholder {
color: #ccc !important;
opacity: 1;
}
.toast-body {
color: #ffffff !important;
font-weight: 500 !important;
}
.toast {
animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}