Files
print-calculator/frontend/src/app/shared/components/app-alert/app-alert.component.scss
Joe Küng bcdeafe119
All checks were successful
Build, Test and Deploy / test-backend (push) Successful in 23s
Build, Test and Deploy / build-and-push (push) Successful in 22s
Build, Test and Deploy / deploy (push) Successful in 5s
chore(web): refractor
2026-02-06 11:33:25 +01:00

13 lines
479 B
SCSS

.alert {
padding: var(--space-4);
border-radius: var(--radius-md);
display: flex;
gap: var(--space-3);
font-size: 0.875rem;
margin-bottom: var(--space-4);
}
.info { background: var(--color-neutral-100); color: var(--color-neutral-800); }
.warning { background: #fefce8; color: #854d0e; border: 1px solid #fde047; }
.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }