mirror of
https://github.com/khairul169/code-share.git
synced 2025-04-28 16:49:36 +07:00
27 lines
440 B
CSS
27 lines
440 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
@apply bg-slate-900 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 */
|
|
}
|