Skip to content

Commit

Permalink
fix sizes
Browse files Browse the repository at this point in the history
ungarson authored and aopoltorzhicky committed Jun 15, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent d28894d commit 6f14e28
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions src/views/stats/SideBar.vue
Original file line number Diff line number Diff line change
@@ -10,8 +10,8 @@
<v-divider :key="'divider' + idx" v-if="idx > 0"></v-divider>
<v-list-item :key="idx" @click="navigate(state)">
<v-list-item-content>
<v-list-item-title class="overline text--primary">{{ state.network }}</v-list-item-title>
<v-list-item-subtitle class="body-2">{{ state.protocol.slice(0, 8) }}</v-list-item-subtitle>
<v-list-item-title class="sidebar-title text--primary">{{ state.network }}</v-list-item-title>
<v-list-item-subtitle class="sidebar-subtitle">{{ state.protocol.slice(0, 8) }}</v-list-item-subtitle>
</v-list-item-content>
<v-list-item-action>
<v-list-item-action-text
@@ -86,3 +86,21 @@ export default {
z-index: 1;
}
</style>

<style lang="scss" scoped>
.sidebar-title {
font-weight: 400;
letter-spacing: 0.1666666667em !important;
line-height: 1rem;
text-transform: uppercase;
font-family: "Roboto", sans-serif !important;
font-size: 0.75rem !important;
}
.sidebar-subtitle {
font-size: 0.75rem !important;
font-weight: 400;
letter-spacing: 0.0178571429em !important;
line-height: 1.25rem;
font-family: "Roboto", sans-serif !important;
}
</style>

0 comments on commit 6f14e28

Please sign in to comment.