Corrects the positioning of the "Download the latest binary" button on the update.htm page, where the button was slightly misaligned above the text.
The issue was resolved by using vertical-align: text-bottom;.
Additionally, the alignment of the <a> tag with the <img> inside it has been improved by applying display: inline-flex;
(see comparison images below).
before:
after:
Edit: Fixed the issue where the space after "Download the latest binary:" disappeared after building by adding .
Corrects the positioning of the "Download the latest binary" button on the
update.htm
page, where the button was slightly misaligned above the text. The issue was resolved by usingvertical-align: text-bottom;
.Additionally, the alignment of the
<a>
tag with the<img>
inside it has been improved by applyingdisplay: inline-flex;
(see comparison images below).before:
after:
Edit: Fixed the issue where the space after "Download the latest binary:" disappeared after building by adding
.