Spaces:
Build error
Build error
File size: 607 Bytes
8811ee0 0ca99f1 8811ee0 |
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 |
@import './highlight-js.css';
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.btn {
@apply cursor-pointer select-none inline-flex justify-center items-center whitespace-nowrap border focus:outline-none focus:ring;
}
}
@layer utilities {
.scrollbar-custom {
@apply !scrollbar-thin !scrollbar-w-1 !scrollbar-thumb-rounded-full !scrollbar-track-transparent !scrollbar-thumb-black/10 dark:!scrollbar-thumb-white/10;
}
.code-block {
@apply relative rounded-lg my-4;
}
.code-block > pre {
@apply overflow-auto px-5 py-3.5 text-gray-500 dark:text-gray-400;
}
}
|