Fix main height when system messages are shown (#22988)

GitOrigin-RevId: 0b5c6d22f61788475fc2c8595fd34e927a9f2303
This commit is contained in:
Domagoj Kriskovic
2025-01-22 13:16:56 +01:00
committed by Copybot
parent 6cb1528495
commit 8ae5e1dc5d

View File

@@ -16,6 +16,8 @@ $editor-toggler-bg-dark-color: color.adjust(
}
#ide-root {
display: flex;
flex-direction: column;
height: 100vh; /* for backwards compatibility */
height: 100dvh; /* needed for mobile devices */
@@ -71,7 +73,7 @@ $editor-toggler-bg-dark-color: color.adjust(
}
.ide-react-main {
height: 100%;
flex: 1;
display: flex;
flex-direction: column;