mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
fix: use native buttons
This commit is contained in:
parent
c90b09eea1
commit
691771fc01
@ -1,11 +1,12 @@
|
||||
import React from 'react';
|
||||
import glamorous from 'glamorous';
|
||||
|
||||
const Button = props => <span role="button" tabIndex={-1} {...props} />;
|
||||
|
||||
export default glamorous(Button, { displayName: 'Button', rootEl: 'span' })(
|
||||
export default glamorous.button(
|
||||
{
|
||||
cursor: 'pointer',
|
||||
border: '1px solid rgba(0, 0, 0, 0)',
|
||||
font: 'inherit',
|
||||
background: 'none',
|
||||
'box-shadow': 'none',
|
||||
padding: 0,
|
||||
':hover': {
|
||||
backgroundColor: 'rgba(0, 0, 0, 0.05)',
|
||||
border: '1px solid #ccc',
|
||||
|
Loading…
x
Reference in New Issue
Block a user