#93: minor fixes

This commit is contained in:
SleepWalker
2016-05-22 15:31:43 +03:00
parent 00b538a85f
commit a9efb9040a
4 changed files with 8 additions and 5 deletions

View File

@@ -42,7 +42,7 @@
}
.menuContainer {
width: 100%;
margin-left: 0;
}
}

View File

@@ -78,8 +78,7 @@ export default class Profile extends Component {
<ProfileField
label={<Message {...langMenuMessages.siteLanguage} />}
value={<LangMenu toggleRef={(toggle) => this.langMenuToggle = toggle} showCurrentLang />}
onChange={() => this.langMenuToggle()}
value={<LangMenu showCurrentLang />}
/>
<ProfileField
@@ -89,7 +88,7 @@ export default class Profile extends Component {
<ProfileField
label={'UUID'}
value={user.uuid}
value={<span className={styles.uuid}>{user.uuid}</span>}
/>
</div>
</div>

View File

@@ -95,3 +95,7 @@
font-size: 11px;
line-height: 1.2;
}
.uuid {
font-family: $font-family-title;
}