Skip to content

Commit

Permalink
Fix .uimix files
Browse files Browse the repository at this point in the history
  • Loading branch information
seanchas116 committed Apr 30, 2023
1 parent 29c8773 commit dac3781
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 40 deletions.
2 changes: 1 addition & 1 deletion packages/sandbox/src/button.uimix
Expand Up @@ -33,7 +33,7 @@ export default (
color="#111827"
textContent="Button"
variants={{
hover: { fills: [{ solid: "#FFFFFF" }] },
hover: { color: "#FFFFFF" },
"maxWidth:767": { fontSize: 14 },
}}
/>
Expand Down
10 changes: 5 additions & 5 deletions packages/sandbox/src/components.uimix
Expand Up @@ -48,11 +48,11 @@ export default (
name="Text"
width="hug"
height="hug"
color="#000000"
marginTop={10}
marginRight={20}
marginBottom={30}
marginLeft={40}
color="#000000"
textContent="Hello, world!"
fontSize={20}
/>
Expand Down Expand Up @@ -140,7 +140,7 @@ export default (
"maxWidth:767": {
overrides: {
button: {
overrides: { text: { fills: [{ solid: "#FF0000" }] } },
overrides: { text: { color: "#FF0000" } },
},
},
},
Expand Down Expand Up @@ -226,8 +226,8 @@ export default (
hidden={false}
width={{ min: 0 }}
height="hug"
color="#1f2937"
opacity={1}
color="#1f2937"
textContent="React Components Import/Export"
fontFamily="Satoshi"
fontWeight={700}
Expand All @@ -242,8 +242,8 @@ export default (
hidden={false}
width={{ min: 0 }}
height="hug"
color="#4b5563"
opacity={1}
color="#4b5563"
textContent={
"Seamlessly work with React components, boosting your design-to-development workflow.\n"
}
Expand Down Expand Up @@ -311,11 +311,11 @@ export default (
name="Text"
width="hug"
height="hug"
color="#000000"
marginTop={10}
marginRight={20}
marginBottom={30}
marginLeft={40}
color="#000000"
textContent="Hello, world!"
fontSize={20}
/>
Expand Down

0 comments on commit dac3781

Please sign in to comment.