mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
Size logo properly with the user image
This commit is contained in:
parent
f9039acadb
commit
30c9bbe966
1 changed files with 4 additions and 1 deletions
|
@ -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…
Reference in a new issue