Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Add `min-width: 0` to cob content
Sebastian Martinez committed 2 years ago
commit 64d7fbcf5680adc701c32994c19797c04a493f49
parent 5f82eb894bca60dae5fbc681822ae3af59c7c786
2 files changed +15 -2
modified src/views/projects/Issue.svelte
@@ -417,6 +417,13 @@
    gap: 1.5rem;
    width: 20rem;
  }
+
  .content {
+
    display: flex;
+
    flex: 1;
+
    flex-direction: column;
+
    gap: 1.5rem;
+
    min-width: 25rem;
+
  }

  .threads {
    display: flex;
@@ -460,7 +467,7 @@

<Layout {baseUrl} {project} activeTab="issues">
  <div class="issue">
-
    <div style="display: flex; flex: 1; flex-direction: column; gap: 1.5rem;">
+
    <div class="content">
      <CobHeader id={issue.id}>
        <svelte:fragment slot="title">
          {#if issueState !== "read"}
modified src/views/projects/Patch.svelte
@@ -585,6 +585,12 @@
    font-size: var(--font-size-large);
    height: 2.5rem;
  }
+
  .content {
+
    display: flex;
+
    flex: 1;
+
    flex-direction: column;
+
    min-width: 25rem;
+
  }
  .tabs {
    display: flex;
    margin: 3rem 0 1rem 0;
@@ -639,7 +645,7 @@

<Layout {baseUrl} {project} activeTab="patches">
  <div class="patch">
-
    <div style="display: flex; flex: 1; flex-direction: column;">
+
    <div class="content">
      <CobHeader id={patch.id}>
        <svelte:fragment slot="title">
          {#if patchState !== "read"}