Skip to content

Commit

Permalink
fix css
Browse files Browse the repository at this point in the history
  • Loading branch information
joon610 committed Dec 3, 2019
1 parent 902eeb6 commit b2dd07e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mockup-server",
"version": "0.2.2",
"version": "0.2.3",
"private": true,
"scripts": {
"build": "vue-cli-service build",
Expand Down
2 changes: 1 addition & 1 deletion src/components/ApiList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ button {
float: left;
line-height: 50px;
text-align: left;
margin-left: 20px;
margin-left: 5px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
Expand Down
16 changes: 8 additions & 8 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<template lang="pug">
v-container
v-layout(text-center='', wrap='')
v-row.row-height(no-gutters)
.input-row
v-col(cols="8" sm="8")
v-text-field(v-model="rootPath" :solo="true" :flat="true" readonly)
.select-root-container
v-col(cols="4" sm="4")
v-btn(color="#A5D6A7" :disabled="serverStatus" @click="initPath()") Select Root
v-row.row-height(no-gutters)
.input-row
v-col(cols="4" sm="4")
.loacalhost-label http://localhost:
.loacalhost-input
v-col(cols="4" sm="4")
.loacalhost
v-text-field(v-model="portNum" :solo="true" :readonly="isServerOn" :flat="true" style="hegiht:48px")
.server-btn
v-btn(v-show="isServerOn === false" color="primary" :disabled="hasApiList" @click="startServer()") start Server
v-btn(v-show="isServerOn === true " color="deep-orange" :disabled="hasApiList" @click="closeServer()") close Server
v-col(cols="4" sm="4")
v-btn(v-if="isServerOn === false" color="primary" :disabled="hasApiList" @click="startServer()") start Server
v-btn(v-else color="deep-orange" :disabled="hasApiList" @click="closeServer()") close Server
v-row(no-gutters)
v-api-list(v-model="serverStatus" :port="portNum" :isServerOn="isServerOn" style="width:100%" )
</template>
Expand Down

0 comments on commit b2dd07e

Please sign in to comment.