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:
parent
51e31fc8fe
commit
d372227238
1 changed files with 7 additions and 0 deletions
|
@ -20,4 +20,11 @@ a.external-link::after {
|
|||
|
||||
.text {
|
||||
margin-top: 2em;
|
||||
}
|
||||
|
||||
pre {
|
||||
background-color: #f4f4f4;
|
||||
padding: 1em;
|
||||
border-radius: 5px;
|
||||
overflow-x: auto;
|
||||
}
|
Loading…
Reference in a new issue