Skip to content
This repository has been archived by the owner on Oct 17, 2021. It is now read-only.

Commit

Permalink
Changed the position and alignment of testcase chips
Browse files Browse the repository at this point in the history
  • Loading branch information
hnanacc committed Feb 18, 2020
1 parent 054a9a9 commit 2f9acc0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/releaseBuild.yml
Expand Up @@ -5,7 +5,7 @@ on:
push:
branches:
- master

jobs:
release:
name: Release Task
Expand Down Expand Up @@ -33,5 +33,5 @@ jobs:
- name: Release
uses: actions/upload-artifact@v1
with:
name: Setup ${{matrix.os}}
path: dist_electron
name: Setup ${{matrix.os}}
path: dist_electron
2 changes: 1 addition & 1 deletion src/App.vue
Expand Up @@ -11,7 +11,7 @@
<AppBar></AppBar>

<!-- editor container -->
<v-content class="d-flex pa-3"><Monaco class="flex-grow-1"></Monaco></v-content>
<v-content class="d-flex"><Monaco class="flex-grow-1"></Monaco></v-content>

</v-app>
</template>
Expand Down
6 changes: 3 additions & 3 deletions src/components/ControlNormalMode.vue
@@ -1,11 +1,11 @@
<template>
<v-container style="overflow-y:auto!important" fill-height fluid>
<v-container style="overflow-y:auto!important" fluid>
<v-card flat class="flex-grow-1" v-if="showBackground">
<v-card-text class="text-center">{{backgroundText}}</v-card-text>
</v-card>

<v-row v-if="!showBackground">
<v-col class="ma-1 my-2 pa-0" v-for="(test, idx) in testcases" :key="idx">
<v-row justify="start" align="center" v-if="!showBackground">
<v-col class="ma-1 shrink my-2 pa-0" v-for="(test, idx) in testcases" :key="idx">
<v-chip
v-show="test.state"
close
Expand Down

0 comments on commit 2f9acc0

Please sign in to comment.