diff --git a/components/Settings.js b/components/Settings.js index 5b5be51..b21d543 100644 --- a/components/Settings.js +++ b/components/Settings.js @@ -36,7 +36,11 @@ function WindowSettings({ }) { return (
- +
)} - { if (this.props.selected !== theme) { - this.props.onChange(theme) + this.props.onChange('windowTheme', theme) } } @@ -54,34 +55,37 @@ class ThemeSelect extends React.Component { render() { return ( -
- - Theme - -
- {this.renderThemes()} -
- -
+ .themes { + padding: 4px 8px 8px; + display: flex; + flex-direction: row; + width: 100%; + max-width: 200px; + overflow-x: scroll; + } + `} + +
+ ) } }