Skip to content

Commit 23842d7

Browse files
committed
Fix some design response issues. Set the minimum window sizes
1 parent d37196d commit 23842d7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src-electron/main-process/electron-main.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ function createWindow () {
1919
* Initial window options
2020
*/
2121
mainWindow = new BrowserWindow({
22+
minWidth: 850,
23+
minHeight: 600,
2224
useContentSize: true,
2325
resizable: true,
2426
title: 'vDexNode GUI',

src/pages/Index.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@
165165
</div>
166166
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
167167
<q-banner inline-actions class="bg-vdark text-vgrey q-mb-sm">
168-
<div class="text-italic q-py-md">Voting.</div>
168+
<div class="text-italic q-py-xs">Voting.</div>
169+
<div class="text-italic text-caption">*See rules for details.</div>
169170
<template v-slot:action>
170171
<q-btn color="vgreen" class="text-vdark q-mx-xs" v-on:click="vote()" v-if="voting_list.length > 0">Vote now</q-btn>
171172
<div v-if="voting_list.length <= 0">Choose nodes to vote</div>

0 commit comments

Comments
 (0)