Browse Source

Make font size bigger in seq2seq

pull/341/head
Hironsan 5 years ago
parent
commit
e00df89ef7
3 changed files with 5 additions and 3 deletions
  1. 2
      frontend/components/containers/Seq2seqContainer.vue
  2. 4
      frontend/components/organisms/Seq2seqBox.vue
  3. 2
      frontend/pages/demo/translation/index.vue

2
frontend/components/containers/Seq2seqContainer.vue

@ -4,7 +4,7 @@
v-if="currentDoc"
class="title mb-5"
>
<v-card-text>
<v-card-text class="title">
{{ currentDoc.text }}
</v-card-text>
</v-card>

4
frontend/components/organisms/Seq2seqBox.vue

@ -24,7 +24,9 @@
</template>
<template v-slot:item.text="{ item }">
<v-edit-dialog>
{{ item.text }}
<span class="title" style="font-weight:400">
{{ item.text }}
</span>
<template v-slot:input>
<v-textarea
:value="item.text"

2
frontend/pages/demo/translation/index.vue

@ -6,7 +6,7 @@
<v-card
class="title mb-5"
>
<v-card-text>
<v-card-text class="title">
{{ currentDoc.text }}
</v-card-text>
</v-card>

Loading…
Cancel
Save