feat: Improve code block styling in CSS

Added styles for <pre> elements, including background color, padding, border radius, and horizontal scroll.
This enhancement improves the readability and visual appeal of code blocks in the application.
This commit is contained in:
Kumi 2024-08-27 16:49:35 +02:00
parent 51e31fc8fe
commit d372227238
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -20,4 +20,11 @@ a.external-link::after {
.text {
margin-top: 2em;
}
pre {
background-color: #f4f4f4;
padding: 1em;
border-radius: 5px;
overflow-x: auto;
}