From 5895d9cd6f9af5fa3f6a92a75bc11aeb4c8139d2 Mon Sep 17 00:00:00 2001 From: Peter Clement Date: Thu, 9 Dec 2021 09:21:38 +0000 Subject: [PATCH] increase size of icon display --- .../components/start/ChooseIconModal.svelte | 35 ++++++++++--------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/packages/builder/src/components/start/ChooseIconModal.svelte b/packages/builder/src/components/start/ChooseIconModal.svelte index 17b2260a42..d9973dd32f 100644 --- a/packages/builder/src/components/start/ChooseIconModal.svelte +++ b/packages/builder/src/components/start/ChooseIconModal.svelte @@ -8,20 +8,21 @@ let selectedColor let iconsList = [ - { icon: "Actions", color: "" }, - { icon: "Algorithm", color: "" }, - { icon: "App", color: "" }, - { icon: "Briefcase", color: "" }, - { icon: "Money", color: "" }, - { icon: "ShoppingCart", color: "" }, - { icon: "Form", color: "" }, - { icon: "Help", color: "" }, - { icon: "Monitoring", color: "" }, - { icon: "Sandbox", color: "" }, - { icon: "Project", color: "" }, - { icon: "Organisations", color: "" }, - { icon: "Magnify", color: "" }, - { icon: "Launch", color: "" }, + "Actions", + "Algorithm", + "App", + "Briefcase", + "Money", + "ShoppingCart", + "Form", + "Help", + "Monitoring", + "Sandbox", + "Project", + "Organisations", + "Magnify", + "Launch", + "Actions", ] export const show = () => { modal.show() @@ -60,10 +61,10 @@ {#each iconsList as item}
(selectedIcon = item.icon)} > - +
{/each} @@ -85,7 +86,7 @@