Skip to content

Commit

Permalink
fix: smaller font for device name
Browse files Browse the repository at this point in the history
  • Loading branch information
builder555 committed Mar 13, 2023
1 parent 0550eb4 commit 06d69e3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ui/src/components/TheNameDisplay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const isNameHidden = ref(true);
<h1 class="title">
<a class="restore-click" @click="isNameHidden = !isNameHidden || !name">
<span class="accent" v-if="isNameHidden">PineSAM</span>
<span class="accent" v-else>{{ name }}</span>
<span class="accent small" v-else>{{ name }}</span>
</a>
</h1>
</template>
Expand All @@ -19,4 +19,7 @@ const isNameHidden = ref(true);
h1 {
font-family: 'Righteous', "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.small {
font-size: 0.8em;
}
</style>

0 comments on commit 06d69e3

Please sign in to comment.