This commit is contained in:
Chris Chen
2026-06-20 17:51:33 -07:00
parent f55807fa7d
commit 3558c67fd7
55 changed files with 3140 additions and 85 deletions
@@ -0,0 +1,26 @@
%badge-base {
display: inline-block;
padding: 2px 10px;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: 600;
white-space: nowrap;
}
.badge-approved {
@extend %badge-base;
background-color: #dbeafe;
color: #1e40af;
}
.badge-paid {
@extend %badge-base;
background-color: #d1fae5;
color: #065f46;
}
.badge-rejected {
@extend %badge-base;
background-color: #fee2e2;
color: #991b1b;
}