summaryrefslogtreecommitdiff
path: root/tailwindcss/02-vite/src/style.css
blob: 0b094f7efc5d8872e5debf65b53282fb832b606f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@import "tailwindcss";

/* Base layer customization with Tailwind CSS classes - applies to elements like p, a, img */
@layer base {
  a {
    @apply text-pink-500;
  }
}

/* Components layer - Specify rules for components like btn, card, badge, etc. */
@layer components {
  .btn {
    @apply inline-block rounded p-2 bg-gray-300 hover:bg-gray-900 hover:text-white transition;
  }
}