DEV Community

How do I center a logo in this position?

Darryl Wright on February 20, 2020

You see the blockbuster logo in this position? I am using a generic tag to display it. I've put it inside my component as the topmost item right ...
Collapse
 
mvhoute profile image
Martin van Houte • Edited

Untested because I'm typing this on mobile, but try this on the toolbar:

display: flex;
justify-content: center;

Collapse
 
hhahaha00261328 profile image
hhahahahaha

You could use display: "flex", justifyContent: "center"

Collapse
 
eyesno profile image
Darryl Wright

That did it! Thanks.

Collapse
 
sjellen profile image
SJellen

did you try margin: 0 auto;

Collapse
 
dance2die profile image
Sung M. Kim • Edited

Do you have a runnable sample (CodeSandbox or StackBlitz) or code we can check out?

Collapse
 
eyesno profile image
Darryl Wright

Hopefully I did this right -- let me know if you can see this:

codesandbox.io/s/nervous-snowflake...