2024-02-18 16:03:57 +07:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
body {
|
2024-02-22 12:14:58 +00:00
|
|
|
@apply bg-slate-900 text-white;
|
2024-02-18 16:03:57 +07:00
|
|
|
}
|
|
|
|
|
2024-02-18 21:14:41 +07:00
|
|
|
.cm-theme {
|
2024-02-21 02:01:35 +07:00
|
|
|
@apply h-full md:text-[16px];
|
2024-02-18 16:03:57 +07:00
|
|
|
}
|
2024-02-20 06:52:39 +00:00
|
|
|
|
|
|
|
.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 {
|
2024-02-21 02:01:35 +07:00
|
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
|
|
scrollbar-width: none; /* Firefox */
|
2024-02-20 06:52:39 +00:00
|
|
|
}
|