mirror of
https://github.com/artegoser/AnoPaper.git
synced 2024-11-22 11:56:21 +03:00
feat: css for md
This commit is contained in:
parent
43d7601ea6
commit
62ed1f7e06
2 changed files with 84 additions and 4 deletions
|
@ -1,3 +1,81 @@
|
||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
|
|
||||||
|
/* styles for displaying markdown */
|
||||||
|
@layer base {
|
||||||
|
.md h1 {
|
||||||
|
@apply text-6xl;
|
||||||
|
}
|
||||||
|
.md h2 {
|
||||||
|
@apply text-5xl;
|
||||||
|
}
|
||||||
|
.md h3 {
|
||||||
|
@apply text-4xl;
|
||||||
|
}
|
||||||
|
.md h4 {
|
||||||
|
@apply text-3xl;
|
||||||
|
}
|
||||||
|
.md h5 {
|
||||||
|
@apply text-2xl;
|
||||||
|
}
|
||||||
|
.md h6 {
|
||||||
|
@apply text-xl;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md blockquote{
|
||||||
|
@apply border-l-4;
|
||||||
|
@apply pl-2;
|
||||||
|
@apply rounded-lg;
|
||||||
|
@apply bg-zinc-200;
|
||||||
|
@apply border-zinc-400;
|
||||||
|
|
||||||
|
@apply dark:bg-zinc-800;
|
||||||
|
@apply dark:border-zinc-600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md hr {
|
||||||
|
@apply mb-4;
|
||||||
|
@apply mt-4;
|
||||||
|
@apply border-2;
|
||||||
|
@apply rounded-lg;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md ul{
|
||||||
|
@apply list-disc;
|
||||||
|
@apply list-inside;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md li ul {
|
||||||
|
@apply list-disc;
|
||||||
|
@apply list-inside;
|
||||||
|
@apply ml-2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md ol{
|
||||||
|
@apply list-decimal;
|
||||||
|
@apply list-inside;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md li ol{
|
||||||
|
@apply list-decimal;
|
||||||
|
@apply list-inside;
|
||||||
|
@apply ml-2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md code {
|
||||||
|
@apply p-1;
|
||||||
|
@apply rounded-lg;
|
||||||
|
@apply bg-zinc-200;
|
||||||
|
@apply border-zinc-400;
|
||||||
|
|
||||||
|
@apply dark:bg-zinc-800;
|
||||||
|
@apply dark:border-zinc-600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md a {
|
||||||
|
@apply inline-block bg-transparent text-blue-600;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -22,9 +22,11 @@ function CreateNote() {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ReactMarkdown className={!preview ? "w-full hidden" : "w-full"}>
|
<div className="w-full md">
|
||||||
|
<ReactMarkdown className={!preview ? "hidden" : ""}>
|
||||||
{text}
|
{text}
|
||||||
</ReactMarkdown>
|
</ReactMarkdown>
|
||||||
|
</div>
|
||||||
|
|
||||||
<textarea
|
<textarea
|
||||||
className={`
|
className={`
|
||||||
|
|
Loading…
Add table
Reference in a new issue