code-share/renderer/globals.css

31 lines
484 B
CSS
Raw Normal View History

2024-02-18 16:03:57 +07:00
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
2024-02-23 19:36:10 +07:00
@apply bg-background 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
}
/* .code-editor a {
display: none;
} */