Skip to content

Commit

Permalink
Increased resolution of subscale (/100)
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Strachan committed Aug 16, 2023
1 parent f7f692c commit 247bb40
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bb-fontawesome",
"version": "1.1_6.2.1-free",
"version": "1.2_6.2.1-free",
"description": "A FontAwesome component for Budibase",
"license": "MIT",
"author": "Matthew Strachan",
Expand Down
2 changes: 1 addition & 1 deletion schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"label": "Sub Scale",
"defaultValue": 0,
"min": 0,
"max": 9
"max": 99
},
{
"type": "color",
Expand Down
2 changes: 1 addition & 1 deletion src/Component.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
return word[0].toUpperCase() + word.substring(1);
}).join("");
$: fScale = iconScale + (iconSubScale / 10);
$: fScale = iconScale + (iconSubScale / 100);
</script>

<div use:styleable={$component.styles}>
Expand Down

0 comments on commit 247bb40

Please sign in to comment.