code-share/src/app/globals.css

28 lines
446 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-20 06:52:39 +00:00
font-size: 16px;
2024-02-18 21:14:41 +07:00
@apply h-full;
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 {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}