fix: make code blocks match height

This commit is contained in:
Seth Falco 2023-07-09 12:25:03 +01:00
parent dcc821bc3c
commit 1c3f3e5696
No known key found for this signature in database
GPG key ID: DE1C217EFF01FEC8
2 changed files with 14 additions and 3 deletions

View file

@ -381,6 +381,16 @@ select {
border: 0;
}
.code-row-wrapper {
display: flex;
flex-wrap: wrap;
}
.code-box {
display: flex;
flex-direction: column;
}
.code {
font-size: 90%;
padding: 1rem 1.5rem;
@ -391,6 +401,7 @@ select {
min-height: 280px;
width: 100%;
overflow: auto;
flex-grow: 1;
}
code[class*="language-"], pre[class*="language-"] {