fix(RepoLoadingOverlay): adjust loading overlay position

The loading overlay's position has been updated to account for a new
layout change. This ensures that the overlay is displayed correctly
below the app title bar, improving the user experience during loading.

- Adjusted overlay position to maintain consistency with layout changes
This commit is contained in:
Christoph Brandau
2026-07-08 15:39:41 +02:00
parent 44be7afff2
commit 0d4f9ca630
+1 -1
View File
@@ -33,7 +33,7 @@
<style>
.repo-loading {
position: fixed;
top: var(--app-titlebar-height, 42px);
top: calc(var(--app-titlebar-height, 42px) + 56px);
right: 0;
bottom: 0;
left: 0;