onedrive/styles/globals.css
2021-08-31 17:56:20 +01:00

30 lines
487 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@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 */
}
}
}
.react-pdf__Page__canvas {
@apply mx-auto;
@apply shadow-md;
}
.markdown-body ul {
@apply list-disc;
}
.markdown-body ol {
@apply list-decimal;
}