Skip to content

Commit

Permalink
make reserved fields look like other fields
Browse files Browse the repository at this point in the history
  • Loading branch information
ungarson committed Jan 21, 2021
1 parent 869bb79 commit c28586e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<span :title="value.details">
{{ value.name }}
"{{ value.name }}"
</span>
</template>

Expand Down
12 changes: 6 additions & 6 deletions src/views/contract/MetadataTab/ReservedFields.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<v-list-item-content class="pt-0 pb-0">
<v-list-item-title class="d-flex">
<span class="key-field">
{{
"{{
field.key
}}:
}}":
</span>
<LicenseField
class="value-field ml-3"
Expand Down Expand Up @@ -44,7 +44,7 @@
:value="field.value"
/>
<span v-else class="value-field ml-3">
{{ field.value }}
"{{ field.value }}"
</span>
</v-list-item-title>
</v-list-item-content>
Expand All @@ -71,17 +71,17 @@ export default {

<style lang="scss" scoped>
.v-list-item {
min-height: 1.5rem;
min-height: 1.25rem;
font-family: Monaco,Menlo,Consolas,Bitstream Vera Sans Mono,monospace;
.key-field,
.value-field {
font-size: 0.875rem;
font-size: 0.75rem;
}
.key-field {
color: #9e9e9e;
}
.value-field {
color: var(--v-anchor-base);
color: var(--v-tree-base);
}
}
</style>

0 comments on commit c28586e

Please sign in to comment.