Browse Source

Size logo properly with the user image

pull/266/head
Gabe Kangas 5 years ago
parent
commit
30c9bbe966
  1. 5
      webroot/js/app.js

5
webroot/js/app.js

@ -348,7 +348,10 @@ export default class App extends Component { @@ -348,7 +348,10 @@ export default class App extends Component {
} = logo;
const bgLogo = { backgroundImage: `url(${smallLogo})` };
const bgLogoLarge = { backgroundImage: `url(${largeLogo})` };
const bgLogoLarge = {
backgroundImage: `url(${largeLogo})`,
backgroundSize: 'contain',
};
const tagList = (tags !== null && tags.length > 0)
? tags.map(

Loading…
Cancel
Save