Transition fix, decoration added and dataform button font removed

This commit is contained in:
Joe 2020-06-04 12:22:01 +01:00
parent 049aed676d
commit 0638c5b9b8
2 changed files with 16 additions and 4 deletions

View File

@ -292,7 +292,19 @@ export const typography = [
},
],
},
{ label: "style", key: "font-style", control: Input },
{
label: "Decoration",
key: "text-decoration-line",
control: OptionSelect,
defaultValue: "Underline",
options: [
{ label: "Underline", value: "underline" },
{ label: "None", value: "none" },
{ label: "Overline", value: "overline" },
{ label: "Line-through", value: "line-through" },
{ label: "Under Over", value: "underline overline" },
],
},
]
export const background = [
@ -398,7 +410,7 @@ export const transitions = [
},
{
label: "Duration",
key: "transition-timing-function",
key: "transition-duration",
control: Input,
width: "48px",
textAlign: "center",
@ -406,7 +418,7 @@ export const transitions = [
},
{
label: "Ease",
key: "transition-ease",
key: "transition-timing-function:",
control: OptionSelect,
options: ["linear", "ease", "ease-in", "ease-out", "ease-in-out"],
},

View File

@ -125,7 +125,7 @@
}
button {
font-family: Inter;
font-family: roboto;
font-size: 16px;
padding: 0.4em;
box-sizing: border-box;