Skip to content

Commit

Permalink
💄 Add <hr> between section
Browse files Browse the repository at this point in the history
  • Loading branch information
lancatlin committed Aug 22, 2022
1 parent 901b5fd commit 5e742a9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions assets/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,7 @@ input, textarea {
.error {
color: red;
}

hr {
margin: 10px;
}
6 changes: 6 additions & 0 deletions pages/edit/_id.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
{{ owner }}
</NuxtLink>
</p>
<hr>
<h2>ContentMetadata</h2>
<div>
<p>
Expand Down Expand Up @@ -100,6 +101,7 @@
</button>
</div>

<hr>
<h2>Stakeholders</h2>
<div>
<div v-for="(holder, i) in stakeholders" :key="i" class="stakeholder">
Expand Down Expand Up @@ -132,6 +134,7 @@
</button>
</div>

<hr>
<h2>ContentFingerprints</h2>
<div>
<div v-for="(fingerprint, i) in contentFingerprints" :key="i" class="fingerprint">
Expand All @@ -145,12 +148,14 @@
</button>
</div>

<hr>
<h2>Record Notes</h2>
<p>
<input v-model="recordNotes" type="text" size="20">
</p>
</div>

<hr>
<button class="button" :disabled="owner !== walletAddress" @click="updateISCN">
Update
</button>
Expand All @@ -169,6 +174,7 @@
{{ error }}
</p>

<hr>
<h2>Output JSON</h2>
<pre><code>{{ toJSON }}</code></pre>
</div>
Expand Down

0 comments on commit 5e742a9

Please sign in to comment.