Fix spacing on the downloads page

This commit is contained in:
Bojan Mojsilovic 2024-02-06 14:07:42 +01:00
parent 011cf991bf
commit 47a38df7e0
3 changed files with 5 additions and 4 deletions

View File

@ -29,6 +29,7 @@
.downloadsContent {
display: flex;
gap: 10px;
align-items: flex-start;
justify-content: center;
width: 100%;
@ -122,7 +123,7 @@
font-size: 12px;
font-weight: 400;
line-height: 18px;
margin-top: 12px;
margin-top: 16px;
}
.desktopCTA {

View File

@ -117,7 +117,7 @@ const Downloads: Component = () => {
<div class={styles.buidDetails}>
<div>
{displayDate(iosRD).toLowerCase()} | Build {iosVersion}
{displayDate(iosRD).toLowerCase()} | {intl.formatMessage(t.build)} {iosVersion}
</div>
</div>
@ -139,7 +139,7 @@ const Downloads: Component = () => {
<div class={styles.buidDetails}>
<div>
{displayDate(andRD).toLowerCase()} | Build {andVersion}
{displayDate(andRD).toLowerCase()} | {intl.formatMessage(t.build)} {andVersion}
</div>
</div>

View File

@ -422,7 +422,7 @@ export const downloads = {
},
build: {
id: 'downloads.build',
defaultMessage: 'build',
defaultMessage: 'Build',
description: 'Build label',
},
released: {