Merge pull request #996 from XcrossD/master

Update LeftMenuFooter style
This commit is contained in:
Jim LAURIE 2018-04-24 17:45:32 +02:00 committed by GitHub
commit 8bce274496
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View File

@ -17,8 +17,10 @@ defineMessages(messages);
function LeftMenuFooter({ version }) { // eslint-disable-line react/prefer-stateless-function
return (
<div className={styles.leftMenuFooter}>
<FormattedMessage {...messages.poweredBy} />
<a href="https://strapi.io" target="_blank">v{version}</a>
<div>
<FormattedMessage {...messages.poweredBy} />
<a href="https://strapi.io" target="_blank">v{version}</a>
</div>
<LocaleToggle />
</div>
);

View File

@ -3,7 +3,9 @@
.leftMenuFooter { /* stylelint-disable */
position: absolute;
width: 100%;
width: calc(100% - 2 * 15px);
display: flex;
justify-content: space-between;
bottom: 0;
height: 3rem;
padding-left: 15px;