Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Fix border radius on commit
Alexis Sellier committed 4 years ago
commit b88d6c9c65480c6f660302ee1c6e3395122b97b5
parent a473c04467eda48d5b061e4b409a678e30e4c9cf
1 file changed +2 -6
modified src/base/projects/Header.svelte
@@ -82,9 +82,7 @@
    padding: 0.5rem 0.75rem;
    color: var(--color-secondary);
    background-color: var(--color-secondary-background);
-
    border-radius: inherit;
-
    border-top-right-radius: 0;
-
    border-bottom-right-radius: 0;
+
    border-radius: 0.25rem 0 0 0.25rem;
  }
  .commit .hash {
    display: inline-block;
@@ -95,9 +93,7 @@
  }
  .branch + .hash {
    background-color: var(--color-secondary-background-darker);
-
    border-radius: inherit;
-
    border-top-left-radius: 0;
-
    border-bottom-left-radius: 0;
+
    border-radius: 0 0.25rem 0.25rem 0;
  }

  .anchor {