Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Get rid of <section> tag and global styling
Rūdolfs Ošiņš committed 3 years ago
commit 91e3ed5c0b2fd8a5cd0f4bf0e5806c1a12a35c5f
parent e8d5c4c7bb345b9aaf2adb2d8aa193ed450a5a26
2 files changed +4 -5
modified public/index.css
@@ -94,8 +94,7 @@ body::-webkit-scrollbar-thumb {
  background: var(--color-negative);
}

-
main,
-
section {
+
main {
  display: block;
}

modified src/base/projects/Patch/PatchTimeline.svelte
@@ -24,7 +24,7 @@
</script>

<style>
-
  section {
+
  .timeline {
    display: flex;
    flex-direction: column;
    flex: 1;
@@ -37,7 +37,7 @@
  }
</style>

-
<section>
+
<div class="timeline">
  {#each timeline as element}
    {#if element.type === TimelineType.Merge && element.inner.peer.person}
      <div class="element">
@@ -74,4 +74,4 @@
      </div>
    {/if}
  {/each}
-
</section>
+
</div>