index.styl 341 B

1234567891011121314
  1. // app/pages/Admin/Routes/index.styl
  2. @css {
  3. .routes-table {
  4. @apply min-w-full divide-y divide-gray-200 dark:divide-gray-700;
  5. }
  6. .route-status-active {
  7. @apply px-2 py-1 text-xs rounded-full bg-green-100 text-green-800;
  8. }
  9. .route-status-inactive {
  10. @apply px-2 py-1 text-xs rounded-full bg-red-100 text-red-800;
  11. }
  12. }