mirror of
https://github.com/khairul169/code-share.git
synced 2025-04-29 00:59:37 +07:00
31 lines
484 B
CSS
31 lines
484 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
@apply bg-background text-white;
|
|
}
|
|
|
|
.cm-theme {
|
|
@apply h-full md:text-[16px];
|
|
}
|
|
|
|
.cm-editor {
|
|
@apply py-2;
|
|
}
|
|
|
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
.hide-scrollbar::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
/* Hide scrollbar for IE, Edge and Firefox */
|
|
.hide-scrollbar {
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
scrollbar-width: none; /* Firefox */
|
|
}
|
|
|
|
/* .code-editor a {
|
|
display: none;
|
|
} */
|