adds another color to Nav Bar and also adds roboto as default font in created apps
This commit is contained in:
parent
60424c6f0e
commit
4f291e2f73
|
@ -354,6 +354,7 @@ export default {
|
||||||
settings: [
|
settings: [
|
||||||
{ label: "Logo URL", key: "logoUrl", control: Input },
|
{ label: "Logo URL", key: "logoUrl", control: Input },
|
||||||
{ label: "Title", key: "title", control: Input },
|
{ label: "Title", key: "title", control: Input },
|
||||||
|
{ label: "Color", key: "color", control: Input },
|
||||||
{ label: "Background", key: "backgroundColor", control: Input }],
|
{ label: "Background", key: "backgroundColor", control: Input }],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,14 +1,17 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<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 }}'>
|
<link rel='icon' type='image/png' href='{{ favicon }}'>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
html, body {
|
html,
|
||||||
|
body {
|
||||||
|
font-family: Roboto;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
@ -30,13 +33,14 @@
|
||||||
|
|
||||||
<script src='{{ appRootPath }}/clientFrontendDefinition.js'></script>
|
<script src='{{ appRootPath }}/clientFrontendDefinition.js'></script>
|
||||||
<script src='{{ appRootPath }}/budibase-client.js'></script>
|
<script src='{{ appRootPath }}/budibase-client.js'></script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body id="app">
|
<body id="app">
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
loadBudibase();
|
loadBudibase();
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue