Radish alpha
r
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Radicle
Git
Fix overflow problem in diff view
Open rudolfs opened 1 year ago

When selecting a range of lines and scrolling past the sticky header, the selection would be on top of the header. This fixes it.

check check-visual check-unit-test check-http-client-unit-test check-radicle-httpd check-e2e check-build check-http 👉 Preview 👉 Workflow runs 👉 Branch on GitHub

1 file changed +1 -1 6f134ca6 5e5e6977
modified src/components/File.svelte
@@ -20,7 +20,7 @@
    border-top-left-radius: var(--border-radius-small);
    border-top-right-radius: var(--border-radius-small);
    background-color: var(--color-background-default);
-
    z-index: 1;
+
    z-index: 2;
  }

  .sticky {