Browse Source

Merge pull request #904 from doccano/fix/#892

Fix missing icon
pull/908/head
Hiroki Nakayama 4 years ago
committed by GitHub
parent
commit
189eed5e64
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 13 additions and 13 deletions
  1. 2
      frontend/components/organisms/layout/TheTopBanner.vue
  2. 4
      frontend/pages/auth.vue
  3. 4
      frontend/pages/demo/named-entity-recognition/index.vue
  4. 4
      frontend/pages/demo/sentiment-analysis/index.vue
  5. 4
      frontend/pages/demo/text-to-sql/index.vue
  6. 4
      frontend/pages/demo/translation/index.vue
  7. 4
      frontend/pages/index.vue

2
frontend/components/organisms/layout/TheTopBanner.vue

@ -26,7 +26,7 @@
href="https://github.com/doccano/doccano" href="https://github.com/doccano/doccano"
> >
<v-icon left> <v-icon left>
mdi-github-circle
mdi-github
</v-icon> </v-icon>
GitHub GitHub
</v-btn> </v-btn>

4
frontend/pages/auth.vue

@ -1,6 +1,6 @@
<template> <template>
<v-app id="inspire"> <v-app id="inspire">
<v-content>
<v-main>
<v-container class="fill-height" fluid> <v-container class="fill-height" fluid>
<v-row align="center" justify="center"> <v-row align="center" justify="center">
<v-col cols="12" sm="8" md="4"> <v-col cols="12" sm="8" md="4">
@ -10,7 +10,7 @@
</v-col> </v-col>
</v-row> </v-row>
</v-container> </v-container>
</v-content>
</v-main>
</v-app> </v-app>
</template> </template>

4
frontend/pages/demo/named-entity-recognition/index.vue

@ -1,5 +1,5 @@
<template> <template>
<v-content>
<v-main>
<v-container fluid> <v-container fluid>
<v-row justify="center"> <v-row justify="center">
<v-col cols="12" md="9"> <v-col cols="12" md="9">
@ -21,7 +21,7 @@
</v-col> </v-col>
</v-row> </v-row>
</v-container> </v-container>
</v-content>
</v-main>
</template> </template>
<script> <script>

4
frontend/pages/demo/sentiment-analysis/index.vue

@ -1,5 +1,5 @@
<template> <template>
<v-content>
<v-main>
<v-container fluid> <v-container fluid>
<v-row justify="center"> <v-row justify="center">
<v-col cols="12" md="9"> <v-col cols="12" md="9">
@ -22,7 +22,7 @@
</v-col> </v-col>
</v-row> </v-row>
</v-container> </v-container>
</v-content>
</v-main>
</template> </template>
<script> <script>

4
frontend/pages/demo/text-to-sql/index.vue

@ -1,5 +1,5 @@
<template> <template>
<v-content>
<v-main>
<v-container fluid> <v-container fluid>
<v-row justify="center"> <v-row justify="center">
<v-col cols="12" md="9"> <v-col cols="12" md="9">
@ -23,7 +23,7 @@
</v-col> </v-col>
</v-row> </v-row>
</v-container> </v-container>
</v-content>
</v-main>
</template> </template>
<script> <script>

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

@ -1,5 +1,5 @@
<template> <template>
<v-content>
<v-main>
<v-container fluid> <v-container fluid>
<v-row justify="center"> <v-row justify="center">
<v-col cols="12" md="9"> <v-col cols="12" md="9">
@ -23,7 +23,7 @@
</v-col> </v-col>
</v-row> </v-row>
</v-container> </v-container>
</v-content>
</v-main>
</template> </template>
<script> <script>

4
frontend/pages/index.vue

@ -1,9 +1,9 @@
<template> <template>
<v-content>
<v-main>
<the-top-banner /> <the-top-banner />
<feature-cards /> <feature-cards />
<the-bottom-banner /> <the-bottom-banner />
</v-content>
</v-main>
</template> </template>
<script> <script>

Loading…
Cancel
Save