Hello There!
Hope you are doing good!
By default theme will crop your logo in 220×70 dimension to make the design proper, if it does not fit in your case then you can make little change in the code provided below:
Open theme functions.php file
Search for the below code
add_theme_support( 'custom-logo', array(
'height' => 70,
'width' => 220,
) );
And replace it with the below code
add_theme_support( 'custom-logo', array(
'height' => 70,
'width' => 220,
'flex-height' => true,
'flex-width' => true,
) );
It will allow you to upload a site logo without cropping.
Hope this helps!
Have a great day ahead!
Regards,
Team ProDesigns