Size logo properly with the user image
This commit is contained in:
@@ -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(
|
||||||
|
|||||||
Reference in New Issue
Block a user