code-share/src/app/globals.css

27 lines
440 B
CSS
Raw Normal View History

2024-02-18 16:03:57 +07:00
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
2024-02-20 06:52:39 +00:00
@apply bg-slate-600 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
}