Restyled based on Eartharoid's suggestions.

Used Google translate for languages other than English.
This commit is contained in:
MrOnosa
2020-10-10 18:39:15 -05:00
parent 32fe3a664c
commit 443c53e294
7 changed files with 16 additions and 13 deletions

View File

@@ -145,7 +145,7 @@ export default class BackgroundSettings extends React.PureComponent {
colourSettings = (
<div>
{gradientInputs}
{this.state.gradientSettings.gradient[0].colour !== 'Disabled' ? (<button type="button" className="add" onClick={this.addColour}>+</button>) : null}
{this.state.gradientSettings.gradient[0].colour !== 'Disabled' ? (<button type="button" className="add" onClick={this.addColour}>{this.props.language.background.addColour}</button>) : null}
</div>);
}