1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +12:00

adds another color to Nav Bar and also adds roboto as default font in created apps

This commit is contained in:
kevmodrome 2020-06-03 14:52:18 +02:00
parent 0aa9aece0b
commit dba1ff1de1
2 changed files with 13 additions and 8 deletions

View file

@ -354,6 +354,7 @@ export default {
settings: [
{ label: "Logo URL", key: "logoUrl", control: Input },
{ label: "Title", key: "title", control: Input },
{ label: "Color", key: "color", control: Input },
{ label: "Background", key: "backgroundColor", control: Input }],
},
},

View file

@ -1,14 +1,17 @@
<!doctype html>
<html>
<head>
<meta charset='utf8'>
<meta name='viewport' content='width=device-width'>
<title>{{ title }}</title>
<head>
<meta charset='utf8'>
<meta name='viewport' content='width=device-width'>
<title>{{ title }}</title>
<link rel='icon' type='image/png' href='{{ favicon }}'>
<style>
html, body {
html,
body {
font-family: Roboto;
height: 100%;
width: 100%;
margin: 0px;
@ -30,13 +33,14 @@
<script src='{{ appRootPath }}/clientFrontendDefinition.js'></script>
<script src='{{ appRootPath }}/budibase-client.js'></script>
</head>
<body id="app">
<script>
loadBudibase();
</script>
</body>
</html>