1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 14:05:53 +02:00
.profile/styles/global.css
2022-02-22 21:19:42 +01:00

40 lines
607 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
#__next {
@apply flex h-screen flex-col;
}
.prose {
@apply !max-w-4xl text-gray dark:text-gray-300;
}
.prose a,
.prose strong {
@apply text-yellow dark:text-yellow-dark;
}
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
@apply mt-1 text-gray dark:text-gray-dark;
}
.prose code:not(.hljs) {
color: hsl(286, 60%, 67%);
}
.prose pre {
background-color: transparent !important;
}
.prose pre code {
border-radius: 10px;
}
.hljs {
white-space: pre-wrap !important;
word-break: break-word !important;
word-wrap: normal;
}