aiceaice/barcode-buddy-pro
0
1/* Custom styles for the scanner overlay */2.scanner-overlay {3 background: rgba(0, 0, 0, 0.5);4}5 6.scanner-line {7 width: 100%;8 height: 2px;9 background: rgba(255, 255, 255, 0.7);10 position: relative;11 animation: scan 2s infinite linear;12 box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);13}14 15@keyframes scan {16 0% { top: 0; }17 100% { top: 100%; }18}19 20/* Kanban card styles */21.kanban-card {22 @apply p-4 rounded-lg shadow-sm;23}24 25.kanban-title {26 @apply text-lg font-medium text-gray-700 mb-2;27}28 29.kanban-count {30 @apply text-3xl font-bold text-gray-800;31}32 33/* Table row status colors */34.status-match {35 @apply bg-green-50;36}37 38.status-mismatch {39 @apply bg-red-50;40}41 42.status-excess {43 @apply bg-orange-50;44}