Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
karnthis committed Feb 14, 2024
1 parent 1c615be commit 41ee21d
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions src/views/UserSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
<div class="main-container">
<h1>Dashboard</h1>
<main>
<section>
<section v-if="myRns">
<h2>Display RNS</h2>
<select>
<option v-for="item in Object.keys(myRns)" :key="item">{{ item }}</option>
</select>
</section>
<section>
<h2>Publish Format</h2>
Expand All @@ -15,22 +18,12 @@
</template>

<script setup lang="ts">
import { bStore } from '@/store/main.ts'
const myRns = bStore.getOwnedRns()
</script>

<style lang="scss">
main {
display: flex;
flex-flow: row;
}
aside {
width: 200px;
}
.bytemd {
//margin: 0.5em;
height: calc(100vh - 200px);
width: calc(100vw - 200px - 4rem);
}
</style>

0 comments on commit 41ee21d

Please sign in to comment.