forked from tangled.org/core
this repo has no description
1@tailwind base; 2@tailwind components; 3@tailwind utilities; 4@layer base { 5 @font-face { 6 font-family: "Inter"; 7 font-style: normal; 8 font-weight: 400; 9 font-display: swap; 10 } 11 h1 { 12 @apply text-2xl; 13 @apply font-sans; 14 @apply text-gray-900; 15 } 16 ::selection { 17 @apply bg-green-400; 18 @apply text-gray-900; 19 @apply bg-opacity-30; 20 } 21}