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

adds options to navbar component

This commit is contained in:
kevmodrome 2020-06-03 14:36:39 +02:00
parent 4ee546d2c7
commit 0aa9aece0b
2 changed files with 8 additions and 1 deletions

View file

@ -17,6 +17,7 @@ export default ({
body, html {
height: 100%!important;
font-family: Roboto !important;
}
.lay-__screenslot__text {
width: 100%;

View file

@ -349,7 +349,13 @@ export default {
"A component for handling the navigation within your app.",
icon: "ri-navigation-fill",
children: [],
properties: { design: { ...all } },
properties: {
design: { ...all },
settings: [
{ label: "Logo URL", key: "logoUrl", control: Input },
{ label: "Title", key: "title", control: Input },
{ label: "Background", key: "backgroundColor", control: Input }],
},
},
],
},