Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Fix commit teaser overflow
Sebastian Martinez committed 4 years ago
commit 8f58fd70649dab8e9e4526479591f23846010e34
parent b7150a0ae61ef722f7cc82ac90d00f0566d3e569
1 file changed +9 -1
modified src/base/projects/Commit/CommitTeaser.svelte
@@ -21,6 +21,7 @@
  }
  .author {
    margin-right: 0.5rem;
+
    white-space: nowrap;
  }
  .commit {
    display: flex;
@@ -34,8 +35,15 @@
    align-items: center;
    gap: 0.5rem;
  }
+
  .summary {
+
    overflow: hidden;
+
    white-space: nowrap;
+
    text-overflow: ellipsis;
+
    padding-right: 1rem;
+
  }
  .time {
    margin-right: 0.5rem;
+
    white-space: nowrap;
  }

  @media (max-width: 960px) {
@@ -49,7 +57,7 @@
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
-
      width: 100%;
+
      padding-right: 1rem;
    }
  }
</style>