@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/

/* Fix for bullet-points for Tailwind CSS and ActionText. See https://www.mattlins.com/missing-item-markers-and-indentation-with-tailwindcss-trix */
.trix-content ul {
    @apply list-disc pl-5;
}

.trix-content ol {
    @apply list-decimal pl-5;
}