mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +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';
|
import glamorous from 'glamorous';
|
||||||
|
|
||||||
const Button = props => <span role="button" tabIndex={-1} {...props} />;
|
export default glamorous.button(
|
||||||
|
|
||||||
export default glamorous(Button, { displayName: 'Button', rootEl: 'span' })(
|
|
||||||
{
|
{
|
||||||
cursor: 'pointer',
|
border: '1px solid rgba(0, 0, 0, 0)',
|
||||||
|
font: 'inherit',
|
||||||
|
background: 'none',
|
||||||
|
'box-shadow': 'none',
|
||||||
|
padding: 0,
|
||||||
':hover': {
|
':hover': {
|
||||||
backgroundColor: 'rgba(0, 0, 0, 0.05)',
|
backgroundColor: 'rgba(0, 0, 0, 0.05)',
|
||||||
border: '1px solid #ccc',
|
border: '1px solid #ccc',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user