Radish alpha
r
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Radicle
Git
Various new landing page follow ups
Merged did:key:z6MkkfM3...sVz5 opened 2 years ago
  • Fix HomepageSection overflow
  • Change config edit command in preferredSeedsDropdown to rad config edit
4 files changed +4 -7 fca515ab 00c08ddd
modified src/components/Command.svelte
@@ -23,11 +23,8 @@
    font-family: var(--font-family-monospace);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-semibold);
-
    overflow: hidden;
    padding: 0 2rem 0 0.75rem;
    position: relative;
-
    text-overflow: ellipsis;
-
    white-space: nowrap;
    border: 1px solid var(--color-border-hint);
    color: var(--color-foreground-dim);
    user-select: none;
@@ -58,7 +55,7 @@
  <div
    role="button"
    tabindex="0"
-
    class="cmd"
+
    class="cmd txt-overflow"
    class:full-width={fullWidth}
    on:click={() => {
      clipboard.copy();
modified src/views/home/Index.svelte
@@ -122,7 +122,7 @@
        <svelte:fragment slot="empty">
          <div class="empty-state">
            {#if !nodeId}
-
              <div style:text-align="left">
+
              <div style="text-align: left; width: 100%;">
                <ConnectInstructions />
              </div>
            {:else if localProjects === "error"}
modified src/views/home/components/HomepageSection.svelte
@@ -44,7 +44,7 @@
  }

  .empty-container > .inner {
-
    max-width: 32rem;
+
    max-width: 36rem;
    min-height: 12rem;
    display: flex;
    flex-direction: column;
modified src/views/home/components/PreferredSeedDropdown.svelte
@@ -91,7 +91,7 @@
    <div class="add-seed-node-instructions txt-small">
      <div class="" style:font-weight="bold">Add a different seed node</div>
      <div class="">Update your preferred seeds in your radicle config.</div>
-
      <Command fullWidth command="rad self --config" />
+
      <Command fullWidth command="rad config edit" />
    </div>
  </svelte:fragment>
</Popover>