🐛 Fix visual problems on inspect panel

This commit is contained in:
alonso.torres 2024-01-08 15:51:28 +01:00
parent 5ea414aed6
commit 9007371ab5
3 changed files with 9 additions and 4 deletions

View file

@ -26,7 +26,6 @@
@include codeTypography;
display: flex;
flex-direction: column;
flex: 1;
height: 100%;
min-height: 0;
overflow: hidden;
@ -35,7 +34,6 @@
pre {
border-radius: $br-8;
padding: $s-16;
max-height: var(--code-height);
overflow: auto;
height: 100%;
}
@ -44,6 +42,10 @@
:global(.hljs) {
background: $db-tertiary;
}
&.collapsed {
height: initial;
}
}
.code-row-lang {