mirror of
https://github.com/yldio/copilot.git
synced 2024-11-11 05:40:11 +02:00
updating base and wrapping input in Base element in storybook
This commit is contained in:
parent
a820655eb0
commit
c31d08a15c
@ -7,7 +7,8 @@ const {
|
||||
forms,
|
||||
links,
|
||||
tables,
|
||||
typography
|
||||
typography,
|
||||
colors
|
||||
} = constants;
|
||||
|
||||
const {
|
||||
@ -36,7 +37,7 @@ module.exports = styled.div`
|
||||
"Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||||
font-size: 1rem;
|
||||
line-height: 1.5;
|
||||
color: #373A3C;
|
||||
color: ${colors.fonts.regular};
|
||||
background-color: #FFFFFF;
|
||||
|
||||
/**************************************************************************
|
||||
|
@ -48,7 +48,7 @@ const colors = {
|
||||
...brandInactive,
|
||||
...notifications,
|
||||
...metrics,
|
||||
...fonts
|
||||
fonts
|
||||
};
|
||||
|
||||
module.exports = colors;
|
||||
|
@ -217,16 +217,20 @@ storiesOf('Radio', module)
|
||||
|
||||
storiesOf('Input', module)
|
||||
.add('Default', () => (
|
||||
<Input placeholder="I am the placeholder" />
|
||||
<Base>
|
||||
<Input placeholder="I am the placeholder" />
|
||||
</Base>
|
||||
))
|
||||
.add('type=email', () => (
|
||||
<Input
|
||||
label='Email Address'
|
||||
placeholder='Enter email'
|
||||
type='email'
|
||||
>
|
||||
<small>We'll never share your email with anyone else.</small>
|
||||
</Input>
|
||||
<Base>
|
||||
<Input
|
||||
label='Email Address'
|
||||
placeholder='Enter email'
|
||||
type='email'
|
||||
>
|
||||
<small>We'll never share your email with anyone else.</small>
|
||||
</Input>
|
||||
</Base>
|
||||
));
|
||||
|
||||
storiesOf('Modal', module)
|
||||
|
Loading…
Reference in New Issue
Block a user