wwf
3 天以前 a430284aa21e3ae1f0d5654e55b2ad2852519cc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
@tailwind components;
 
@layer components {
  .premium-badge {
    @apply inline-flex justify-center items-center rounded-full border box-border border-[rgba(255,255,255,0.8)] text-white
  }
 
  /* m is for the regular button */
  .premium-badge-m {
    @apply border shadow-lg !p-1 h-6 w-auto
  }
 
  .premium-badge-s {
    @apply border-[0.5px] shadow-xs !px-1 !py-[3px] h-[18px] w-auto
  }
 
  .premium-badge-blue {
    @apply bg-gradient-to-r from-[#5289ffe6] to-[#155aefe6] bg-util-colors-blue-blue-200
  }
 
  .premium-badge-indigo {
    @apply bg-gradient-to-r from-[#8098f9e6] to-[#444ce7e6] bg-util-colors-indigo-indigo-200
  }
 
  .premium-badge-gray {
    @apply bg-gradient-to-r from-[#98a2b2e6] to-[#676f83e6] bg-util-colors-gray-gray-200
  }
 
  .premium-badge-orange {
    @apply bg-gradient-to-r from-[#ff692ee6] to-[#e04f16e6] bg-util-colors-orange-orange-200
  }
 
  .premium-badge-blue.allowHover:hover {
    @apply bg-gradient-to-r from-[#296dffe6] to-[#004aebe6] bg-util-colors-blue-blue-300 cursor-pointer
  }
 
  .premium-badge-indigo.allowHover:hover {
    @apply bg-gradient-to-r from-[#6172f3e6] to-[#2d31a6e6] bg-util-colors-indigo-indigo-300 cursor-pointer
  }
 
  .premium-badge-gray.allowHover:hover {
    @apply bg-gradient-to-r from-[#676f83e6] to-[#354052e6] bg-util-colors-gray-gray-300 cursor-pointer
  }
 
  .premium-badge-orange.allowHover:hover {
    @apply bg-gradient-to-r from-[#ff4405e6] to-[#b93815e6] bg-util-colors-orange-orange-300 cursor-pointer
  }
}