1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-31 17:51:46 +02:00

feat(text): added is-disabled to text. changed text to texts.

This commit is contained in:
Igor Guastalla de Lima
2019-02-08 22:09:18 -02:00
parent c7d695fbd4
commit cd50e9bd6e
2 changed files with 5 additions and 1 deletions

View File

@@ -3,7 +3,7 @@ import { // eslint-disable-line import/no-extraneous-dependencies
withKnobs, radios,
} from '@storybook/addon-knobs';
const stories = storiesOf('Text', module);
const stories = storiesOf('Texts', module);
stories.addDecorator(withKnobs);
stories.add('text', () => {

View File

@@ -14,4 +14,8 @@
&.is-error {
color: map_get($error-colors, "normal");
}
&.is-disabled {
color: map_get($disabled-colors, "normal");
}
}