fix(editor): Fix navbar height flickering during load (#12738)
Some checks failed
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Benchmark Docker Image CI / build (push) Has been cancelled

This commit is contained in:
Alex Grozav 2025-01-21 11:06:22 +02:00 committed by GitHub
parent 2d3b643f6e
commit a96b3f0091
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 0 deletions

View file

@ -276,6 +276,7 @@ function hideGithubButton() {
}
.main-header {
min-height: var(--navbar--height);
background-color: var(--color-background-xlight);
width: 100%;
box-sizing: border-box;

View file

@ -0,0 +1,3 @@
:root {
--navbar--height: 64px;
}

View file

@ -1,3 +1,4 @@
@import 'variables';
@import 'plugins';
@import 'global';
@import 'animations';