Skip to content

Commit

Permalink
annotations: use normal font size
Browse files Browse the repository at this point in the history
based on user-feedback, the font size should not be small but the
default one
  • Loading branch information
wagner-intevation committed Aug 1, 2024
1 parent 18c51b7 commit 5994cb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/dash/OrgAnnotation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
</div>
<div v-else class="list-group form-horizontal">
<div v-if="value.tag === 'inhibition'" v-bind:class="annoClass">
<div class="form-group-sm">
<div class="form-group">
Inhibition:
<annotation-condition v-model="value.condition" v-bind:status="status" v-bind:condition-hints="conditionHints" />
</div>
</div>
<div class="list-group-item">
<div v-if="value.tag !== 'inhibition'" class="form-group-sm row flex-center" style="margin-bottom: 5px;">
<div v-if="value.tag !== 'inhibition'" class="row flex-center" style="margin-bottom: 5px;">
<label class="col-sm-2 control-label">Tag</label>
<div class="col-sm-5">
<select v-model='selectionValue' class="form-control btn-info">
Expand All @@ -36,7 +36,7 @@
<input type="text" v-model="value.tag" class="form-control" placeholder="tag value" />
</div>
</div>
<div class="form-group-sm row flex-center">
<div class="form-group row flex-center">
<label class="col-sm-2 control-label">Expires</label>
<div class="col-sm-4">
<Flatpickr v-bind:options="flatpickrOptions" v-model:value="value.expires" class="form-control"
Expand Down

0 comments on commit 5994cb2

Please sign in to comment.