mirror of
https://github.com/mue/mue.git
synced 2026-07-19 15:04:11 +02:00
fix: welcome modal bugs, about tab issues
This commit is contained in:
@@ -88,7 +88,7 @@ export default class WelcomeSections extends PureComponent {
|
||||
let welcomeImage = this.state.welcomeImage;
|
||||
|
||||
this.setState({
|
||||
welcomeImage: ++welcomeImage % this.welcomeImages.length,
|
||||
welcomeImage: welcomeImage < 4 ? ++welcomeImage : 0,
|
||||
});
|
||||
|
||||
this.timeout = setTimeout(this.changeWelcomeImg, 3000);
|
||||
@@ -262,7 +262,7 @@ export default class WelcomeSections extends PureComponent {
|
||||
<p>{this.getMessage('modals.welcome.sections.final.description')}</p>
|
||||
<h3 className="quicktip">{this.getMessage('modals.welcome.sections.final.changes')}</h3>
|
||||
<p>{this.getMessage('modals.welcome.sections.final.changes_description')}</p>
|
||||
<div className="themesToggleArea">
|
||||
<div className="themesToggleArea themesToggleAreaWelcome">
|
||||
<div className="toggle" onClick={() => this.props.switchTab(1)}>
|
||||
<span>
|
||||
{this.getMessage('modals.main.settings.sections.language.title')}:{' '}
|
||||
|
||||
@@ -153,6 +153,10 @@
|
||||
}
|
||||
}
|
||||
|
||||
.themesToggleArea .toggle {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.upload {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
Reference in New Issue
Block a user