genre.module.scss 477 B

12345678910111213
  1. .genres {
  2. @apply flex flex-wrap whitespace-nowrap gap-x-5;
  3. }
  4. .genre {
  5. @apply py-2 px-3 rounded-sm border border-transparent;
  6. @apply inline-flex items-center cursor-pointer text-sm rounded px-2.5 py-2 ring-inset ring-1 ring-transparent hover:underline;
  7. &.current {
  8. @apply ring-1 ring-blue-400 text-blue-600 bg-gray-100; // dark:text-white dark:ring-blue-500 bg-gray-100 dark:bg-opacity-10;
  9. :global(.dark) & {
  10. @apply bg-opacity-10 text-white;
  11. }
  12. }
  13. }