mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-28 00:27:26 +00:00
30 lines
810 B
TypeScript
30 lines
810 B
TypeScript
export const Link = {
|
|
variants: {
|
|
'button-link-secondary': {
|
|
color: 'primary',
|
|
bg: 'button-bg',
|
|
_hover: { textDecoration: 'none', bg: 'primary', color: 'bg' },
|
|
_focus: {
|
|
textDecoration: 'none',
|
|
bg: 'primary',
|
|
color: 'bg',
|
|
boxShadow: 'inset 0 0 0 3px var(--chakra-colors-bg)'
|
|
},
|
|
_active: { textDecoration: 'none', bg: 'secondary', color: 'bg' }
|
|
},
|
|
light: {
|
|
textDecoration: 'underline',
|
|
color: 'primary',
|
|
_hover: { color: 'body', textDecorationColor: 'body' },
|
|
_focus: {
|
|
color: 'primary',
|
|
boxShadow: '0 0 0 1px var(--chakra-colors-primary)',
|
|
textDecoration: 'none'
|
|
},
|
|
_pressed: {
|
|
color: 'secondary',
|
|
textDecorationColor: 'secondary'
|
|
}
|
|
}
|
|
}
|
|
};
|