diff --git a/storybook/stories/ColorPicker/ColorPicker.js b/storybook/stories/ColorPicker/ColorPicker.js
index d040072c5..8ceefe947 100644
--- a/storybook/stories/ColorPicker/ColorPicker.js
+++ b/storybook/stories/ColorPicker/ColorPicker.js
@@ -3,16 +3,12 @@ const { storiesOf } = require('@storybook/react');
const { ColorPicker } = require('stremio/common');
const styles = require('./styles');
-const ColorPickerExampleusage = () => {
+storiesOf('ColorPicker', module).add('ColorPicker', () => {
const [color, setColor] = React.useState('rgba(166, 196, 213, 0.97)');
return (
-
-
-
Current color is {color}
+
+
+
Current color is {color}
);
-}
-storiesOf('ColorPicker', module).add('ColorPicker', () =>
);
+});
diff --git a/storybook/stories/ColorPicker/styles.less b/storybook/stories/ColorPicker/styles.less
index ca8901e39..d10672c63 100644
--- a/storybook/stories/ColorPicker/styles.less
+++ b/storybook/stories/ColorPicker/styles.less
@@ -1,5 +1,8 @@
-.demo-container {
- color: var(--color-surfacelighter);
- padding: 1rem;
- .test-output { margin-top: 1rem; }
+.color-picker-container {
+ padding: 1rem;
+
+ .color-output-label {
+ margin-top: 1rem;
+ color: var(--color-surfacelighter);
+ }
}
\ No newline at end of file