Size logo properly with the user image

This commit is contained in:
Gabe Kangas
2020-10-16 13:49:09 -07:00
parent f9039acadb
commit 30c9bbe966

View File

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