1
0
Fork 0
mirror of synced 2024-07-05 06:20:55 +12:00

Font Weights, Color Label and Input Widths

This commit is contained in:
Conor_Mack 2020-06-02 15:42:19 +01:00
parent 459f97baa5
commit 0743a52587
2 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@
<div class="inputs-group">
{#each meta as m, i}
<Input
width="32px"
width="37px"
textAlign="center"
placeholder={m.placeholder || ''}
value={!displayValues || displayValues[i] === '0' ? '' : displayValues[i]}

View file

@ -240,7 +240,7 @@ export const typography = [
label: "Weight",
key: "font-weight",
control: OptionSelect,
options: ["normal", "bold", "bolder", "lighter"],
options: ["200", "300", "400", "500", "600", "700", "800", "900"],
},
{
label: "size",
@ -297,7 +297,7 @@ export const typography = [
export const background = [
{
label: "Background",
label: "Color",
key: "background",
control: Input,
},