Skip to content

Commit

Permalink
Fix height, text highlighting, button text
Browse files Browse the repository at this point in the history
  • Loading branch information
moiikana committed Dec 20, 2024
1 parent 1eb1d7e commit 5c51753
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</span>

<p>
Daher unsere Bitte: Werden Sie Fördermitglied und helfen Sie uns, die kommenden technologischen Herausforderungen zu meistern. Damit die Freiwilligen stets unter
Daher unsere Bitte: <span class="highlight">Werden Sie Fördermitglied und helfen Sie uns, die kommenden technologischen Herausforderungen zu meistern.</span> Damit die Freiwilligen stets unter

Check failure on line 26 in banners/thank_you_2024/content/win/FullPageBannerTextVar.de.vue

View workflow job for this annotation

GitHub Actions / build (18.x)

This line has a length of 204. Maximum allowed is 180
besten Bedingungen arbeiten können – und Sie sich auch in Zukunft auf Wikipedia als Ort des freien Zugangs zu Wissen und Bildung verlassen können.
</p>

Expand Down
2 changes: 1 addition & 1 deletion banners/thank_you_2024/messages.en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { TranslationMessages } from '@src/Translator';
const messages: TranslationMessages = {
'progress-bar-inner-text-win': 'Target reached!',
'progress-bar-inner-text-lose': 'We didn\'t make it',
'mini-read-more-button': 'What you achieved',
'mini-read-more-button': 'What you enable',
'close': 'schließen',
'close-full-page': 'Close thank you message',
'call-to-action-more-info': 'For more information, please visit our website',
Expand Down
9 changes: 6 additions & 3 deletions banners/thank_you_2024/styles/FullPageBanner.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,11 @@
transform: translateY(-50%);

@include breakpoints.small-up {
max-height: calc( 100vh - 80px );
margin: 40px auto;
// chrome based browsers have issues with calc + vh
// max-height: calc( 100vh - 80px );
box-sizing: border-box;
height: 85vh;
margin: 20px auto -20px;
}

&[ open ] {
Expand Down Expand Up @@ -266,4 +269,4 @@
left: 5px;
}
}
}
}

0 comments on commit 5c51753

Please sign in to comment.