Browse Source

Update control line

pull/341/head
Hironsan 5 years ago
parent
commit
55dd10c39c
1 changed files with 21 additions and 25 deletions
  1. 46
      frontend/pages/projects/_id/annotation/index.vue

46
frontend/pages/projects/_id/annotation/index.vue

@ -1,34 +1,30 @@
<template> <template>
<v-content> <v-content>
<v-container fluid grid-list-md>
<v-layout justify-center row wrap>
<!--
<v-flex d-flex xs12 sm12 md12>
<v-card color="transparent elevation-0">
<v-card-title>
<guideline-button />
<v-spacer />
<paginator />
</v-card-title>
</v-card>
</v-flex>
-->
<v-flex d-flex xs12 sm6 md9>
<v-card width="100%">
<v-card-title>
<guideline-button />
<v-spacer />
<paginator />
</v-card-title>
<v-container fluid>
<v-row
no-gutters
class="d-none d-sm-flex"
>
<v-col>
<guideline-button />
</v-col>
<v-spacer />
<v-col>
<paginator />
</v-col>
</v-row>
<v-row justify="center">
<v-col cols="12" md="9">
<v-card>
<v-card-text class="title"> <v-card-text class="title">
<entity-item-box /> <entity-item-box />
</v-card-text> </v-card-text>
</v-card> </v-card>
</v-flex>
<v-flex d-flex xs12 sm6 md3>
<metadata-box :metadata="JSON.parse(metadata)" style="width:100%" />
</v-flex>
</v-layout>
</v-col>
<v-col cols="12" md="3">
<metadata-box :metadata="JSON.parse(metadata)" />
</v-col>
</v-row>
</v-container> </v-container>
</v-content> </v-content>
</template> </template>

Loading…
Cancel
Save