Skip to content

Commit 941c1f8

Browse files
authored
Merge pull request #394 from 8base/feat-make-disbled-text-gray
feat: make text in the disabled input gray
2 parents fae959a + 3aa521b commit 941c1f8

12 files changed

+15
-1
lines changed
-136 Bytes
Loading
-192 Bytes
Loading
-158 Bytes
Loading
-119 Bytes
Loading
-97 Bytes
Loading
21 Bytes
Loading
2.64 KB
Loading
0 Bytes
Loading

src/components/Form/FormSectionTitle.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const name = 'formSectionTitle';
1414
const [FormSectionTitleTag, theme] = createThemeTag(name, ({ FONTS }: *) => ({
1515
root: {
1616
...FONTS.H5,
17+
letterSpacing: '0.5px',
1718
},
1819
modifiers: {},
1920
defaults: {},

src/components/Input/Input.stories.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,3 +104,9 @@ export const withKindUnderline = () => (
104104
withKindUnderline.story = {
105105
name: 'with kind="underline"',
106106
};
107+
108+
export const disabledStory = () => <Input value="hello@8base.com" name="input" onChange={ () => null } disabled />;
109+
110+
disabledStory.story = {
111+
name: 'with disabled=true',
112+
};

0 commit comments

Comments
 (0)