onedrive/styles/globals.css

30 lines
487 B
CSS
Raw Normal View History

2021-06-22 12:17:15 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2021-06-29 14:31:57 +00:00
2021-08-29 14:13:50 +00:00
@layer utilities {
@variants responsive {
/* Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
}
}
2021-06-29 14:31:57 +00:00
.react-pdf__Page__canvas {
@apply mx-auto;
2021-06-29 15:20:35 +00:00
@apply shadow-md;
2021-06-29 14:31:57 +00:00
}
2021-06-29 20:00:05 +00:00
.markdown-body ul {
@apply list-disc;
}
.markdown-body ol {
@apply list-decimal;
}