Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

63 lines
1.4KB

  1. /**
  2. * This injects Tailwind's base styles, which is a combination of
  3. * Normalize.css and some additional base styles.
  4. *
  5. * You can see the styles here:
  6. * https://github.com/tailwindcss/tailwindcss/blob/master/css/preflight.css
  7. *
  8. * If using `postcss-import`, use this import instead:
  9. *
  10. * @import "tailwindcss/preflight";
  11. */
  12. @tailwind preflight;
  13. /**
  14. * This injects any component classes registered by plugins.
  15. *
  16. * If using `postcss-import`, use this import instead:
  17. *
  18. * @import "tailwindcss/components";
  19. */
  20. @tailwind components;
  21. /**
  22. * Here you would add any of your custom component classes; stuff that you'd
  23. * want loaded *before* the utilities so that the utilities could still
  24. * override them.
  25. *
  26. * Example:
  27. *
  28. * .btn { ... }
  29. * .form-input { ... }
  30. *
  31. * Or if using a preprocessor or `postcss-import`:
  32. *
  33. * @import "components/buttons";
  34. * @import "components/forms";
  35. */
  36. /**
  37. * This injects all of Tailwind's utility classes, generated based on your
  38. * config file.
  39. *
  40. * If using `postcss-import`, use this import instead:
  41. *
  42. * @import "tailwindcss/utilities";
  43. */
  44. @tailwind utilities;
  45. /**
  46. * Here you would add any custom utilities you need that don't come out of the
  47. * box with Tailwind.
  48. *
  49. * Example :
  50. *
  51. * .bg-pattern-graph-paper { ... }
  52. * .skew-45 { ... }
  53. *
  54. * Or if using a preprocessor or `postcss-import`:
  55. *
  56. * @import "utilities/background-patterns";
  57. * @import "utilities/skew-transforms";
  58. */