mirror of https://github.com/Lissy93/dashy.git
♻️ Fixed console formatting in welcome message, and increaes size of config modal a bit
This commit is contained in:
parent
cd314cb523
commit
f1f227d41f
|
@ -36,7 +36,7 @@ module.exports = (ip, port, isDocker) => {
|
||||||
+ `http://${ip}:${port}${chars.RESET}${blanks(18 - ip.length)}${chars.GREEN}┃${chars.BR}`
|
+ `http://${ip}:${port}${chars.RESET}${blanks(18 - ip.length)}${chars.GREEN}┃${chars.BR}`
|
||||||
+ `┃ ${chars.CYAN}After updating your config file, run '${chars.BRIGHT}yarn build`
|
+ `┃ ${chars.CYAN}After updating your config file, run '${chars.BRIGHT}yarn build`
|
||||||
+ `${chars.RESET}${chars.CYAN}' to rebuild the app${blanks(6)}${chars.GREEN}┃${chars.BR}`
|
+ `${chars.RESET}${chars.CYAN}' to rebuild the app${blanks(6)}${chars.GREEN}┃${chars.BR}`
|
||||||
+ `┗${line(75)}┛${chars.BR}${chars.BR}`;
|
+ `┗${line(75)}┛${chars.BR}${chars.BR}${chars.RESET}`;
|
||||||
}
|
}
|
||||||
return msg;
|
return msg;
|
||||||
};
|
};
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Modal containing all the configuration options -->
|
<!-- Modal containing all the configuration options -->
|
||||||
<modal :name="modalNames.CONF_EDITOR" :resizable="true" width="60%" height="80%"
|
<modal :name="modalNames.CONF_EDITOR" :resizable="true" width="60%" height="85%"
|
||||||
@closed="$emit('modalChanged', false)" classes="dashy-modal">
|
@closed="$emit('modalChanged', false)" classes="dashy-modal">
|
||||||
<ConfigContainer :config="combineConfig()" />
|
<ConfigContainer :config="combineConfig()" />
|
||||||
</modal>
|
</modal>
|
||||||
|
|
Loading…
Reference in New Issue