♻️ Fixed console formatting in welcome message, and increaes size of config modal a bit

This commit is contained in:
Alicia Sykes 2021-06-20 20:45:50 +01:00
parent cd314cb523
commit f1f227d41f
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ module.exports = (ip, port, isDocker) => {
+ `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.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;
};

View File

@ -10,7 +10,7 @@
</div>
<!-- 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">
<ConfigContainer :config="combineConfig()" />
</modal>