feat: Add alert processing functionality and UI feedback
This commit is contained in:
@@ -112,3 +112,26 @@ button {
|
||||
box-shadow: 0 6px 18px rgba(63, 99, 183, 0.35);
|
||||
}
|
||||
button:hover { filter: brightness(1.05); }
|
||||
|
||||
/* Alert styles */
|
||||
.alert {
|
||||
padding: 0.75rem 1rem;
|
||||
border-radius: 8px;
|
||||
border: 1px solid;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.alert.success {
|
||||
background: rgba(34, 197, 94, 0.1);
|
||||
border-color: var(--success);
|
||||
color: #4ade80;
|
||||
}
|
||||
.alert.warn {
|
||||
background: rgba(245, 158, 11, 0.1);
|
||||
border-color: var(--warn);
|
||||
color: #fbbf24;
|
||||
}
|
||||
.alert.danger {
|
||||
background: rgba(239, 68, 68, 0.1);
|
||||
border-color: var(--danger);
|
||||
color: #f87171;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user