You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
53 lines
853 B
53 lines
853 B
@tailwind base; |
|
@tailwind components; |
|
@tailwind utilities; |
|
|
|
|
|
@layer base { |
|
h1 { |
|
@apply text-gray-50; |
|
} |
|
|
|
h2 { |
|
@apply text-gray-100; |
|
} |
|
|
|
h3 { |
|
@apply text-gray-150; |
|
} |
|
|
|
h4 { |
|
@apply text-gray-200; |
|
} |
|
|
|
p { |
|
@apply text-gray-250; |
|
} |
|
} |
|
|
|
@layer components { |
|
.container { |
|
@apply bg-gray-800; |
|
} |
|
|
|
.sub-container { |
|
@apply bg-gray-900; |
|
} |
|
|
|
.icon { |
|
@apply h-[25px] brightness-0 invert dark:brightness-100 dark:invert-0; |
|
} |
|
|
|
} |
|
|
|
@layer utilities { |
|
/* Hide scrollbar for Chrome, Safari and Opera */ |
|
.no-scrollbar::-webkit-scrollbar { |
|
display: none; |
|
} |
|
/* Hide scrollbar for IE, Edge and Firefox */ |
|
.no-scrollbar { |
|
-ms-overflow-y-style: none; /* IE and Edge */ |
|
scrollbar-width: none; /* Firefox */ |
|
} |
|
}
|
|
|