Skip to content

Commit

Permalink
Fix: style update
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaozhu188 committed Feb 26, 2020
1 parent e366d8f commit 5ed2975
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/renderer/views/Update/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="title"> 发现新版本 <small v-if="remoteVersionFromApp">v{{ remoteVersionFromApp }}</small>
</div>
<div class="content">
<div v-if="updateContent" v-html="updateContent"></div>
<div class="fixed" v-if="updateContent" v-html="updateContent"></div>
<ul class="fixed" v-else>
<li>1.提升了客户端的启动速度</li>
<li>2.解决了已知的BUG</li>
Expand All @@ -23,7 +23,8 @@
</div>
</template>
<div class="download-wrapper" v-else>
<div class="download-title">正在下载...</div>
<div class="download-title" v-if="is_paused">暂停中</div>
<div class="download-title" v-else>正在下载...</div>
<div class="progress-bar">
<a-progress size="small" :percent="state.percent" />
</div>
Expand Down Expand Up @@ -244,7 +245,7 @@ export default {
.content {
width: 70%;
margin: auto;
margin: 0 auto;
overflow: auto;
.verson {
display: flex;
Expand Down

0 comments on commit 5ed2975

Please sign in to comment.