Update name/description heights in badge dialog

This commit is contained in:
Evan Hahn 2021-11-11 17:01:12 -06:00 committed by GitHub
parent 910516f896
commit da8ec83871
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 4 deletions

View File

@ -99,13 +99,16 @@
&__name {
@include font-title-2;
@include fixed-height(2.5rem);
margin-top: 24px;
@include fixed-height(3.5em);
align-items: center;
display: flex;
justify-content: center;
margin-bottom: 8px;
margin-top: 24px;
}
&__description {
@include font-body-1;
@include fixed-height(3.5rem);
@include fixed-height(5.5em);
}
}

View File

@ -23,7 +23,8 @@ export function getFakeBadge({
id,
category: alternate ? BadgeCategory.Other : BadgeCategory.Donor,
name: `Test Badge ${alternate ? 'B' : 'A'}`,
descriptionTemplate: '{short_name} got this badge for no good reason',
descriptionTemplate:
"{short_name} got this badge because they're cool. Signal is a nonprofit with no advertisers or investors, supported only by people like you.",
images: [
...Array(3).fill(
zipObject(Object.values(BadgeImageTheme), repeat(imageFile))