Commit 13ef7cdb authored by tom's avatar tom

update secondary button styles

parent 6f8d172a
...@@ -17,10 +17,11 @@ const variantPrimary = { ...@@ -17,10 +17,11 @@ const variantPrimary = {
}, },
}; };
const variantSecondary = { const variantSecondary: SystemStyleFunction = (props) => {
color: 'blue.600', return {
color: mode('blue.600', 'blue.300')(props),
fontWeight: 600, fontWeight: 600,
borderColor: 'blue.600', borderColor: mode('blue.600', 'blue.300')(props),
border: '2px solid', border: '2px solid',
_hover: { _hover: {
color: 'blue.400', color: 'blue.400',
...@@ -29,6 +30,7 @@ const variantSecondary = { ...@@ -29,6 +30,7 @@ const variantSecondary = {
_disabled: { _disabled: {
opacity: 0.2, opacity: 0.2,
}, },
};
}; };
const variantIcon: SystemStyleFunction = (props) => { const variantIcon: SystemStyleFunction = (props) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment