Fix blockquote overflow problem.

This commit is contained in:
liding 2024-06-11 10:31:07 +08:00
parent 2cb3299402
commit cb7ce1361d

View File

@ -73,8 +73,10 @@ const articlePrettyName = article!.id.split("/").pop()!.replace(".md", "");
}
:global(.article blockquote) {
margin: 0;
padding: 1px 1.5em;
padding: 0 1em;
background: rgb(246, 246, 246);
border-radius: 6px;
border: 1px solid #aaa;
overflow-x: auto;
}
</style>