Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

33 lines
743B

  1. /** ------------------------------------------------------------
  2. ## TAILWIND CSS
  3. --------------------------------------------------------- */
  4. @import '_tailwind';
  5. /** ------------------------------------------------------------
  6. ## CUSTOM CLASSES
  7. --------------------------------------------------------- */
  8. html {
  9. height: 100%;
  10. }
  11. body {
  12. background-color: #fafafa;
  13. min-height: 100%;
  14. }
  15. .btn {
  16. @apply text-xs font-semibold rounded-full px-4 py-1 leading-normal bg-white border border-black text-black;
  17. }
  18. .btn-black {
  19. @apply bg-white text-black;
  20. }
  21. .btn-black:hover {
  22. @apply bg-black text-white;
  23. }
  24. /* Temporary fix for https://github.com/vaso2/nuxt-fontawesome/issues/9 */
  25. .fix-fa-inlined span{
  26. width: 1em !important;
  27. }