thunderbird-patches
thunderbird-patches copied to clipboard
The bottom part of the 'About Betterbird' Window is cut off
The bottom of the 'About Betterbird' window is cut off and the text is not visible. Please see the screenshot. Is this a problem in my environment?
I modified it by adding the following two lines to 'aboutDialog.css'.
#leftBox {
background-image: url("chrome://branding/content/about-logo.svg");
background-repeat: no-repeat;
/* min-width and min-height create room for the logo */
min-width: 210px;
min-height: 210px;
+ margin-top: 20px; /* add */
+ margin-bottom: 20px; /* add */
margin-inline-start: 30px;
}
Below is a screenshot of the results.
@kiki-ja