File tree 5 files changed +9
-9
lines changed
graphics/mediabox/components
5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ export function formatSrcomPronouns(pronouns?: string): string | undefined {
84
84
*/
85
85
export function formatUSD ( amount : number , noCents = false ) : string {
86
86
if ( amount >= 100 || noCents ) {
87
- return `$ ${ Math . floor ( amount ) . toLocaleString ( 'en-US' , { maximumFractionDigits : 0 } ) } ` ;
87
+ return `€ ${ Math . floor ( amount ) . toLocaleString ( 'en-US' , { maximumFractionDigits : 0 } ) } ` ;
88
88
}
89
- return `$ ${ amount . toFixed ( 2 ) } ` ;
89
+ return `€ ${ amount . toFixed ( 2 ) } ` ;
90
90
}
Original file line number Diff line number Diff line change 4
4
@import url ('../_misc/fonts/montserrat.css' );
5
5
6
6
body {
7
- font-family : 'Goodlight ' , sans-serif;
7
+ font-family : 'Bahnschrift ' , sans-serif;
8
8
font-weight : 600 ;
9
9
/*color: var(--font-colour);*/
10
10
/* text-shadow: 2px 2px 2px black; */
Original file line number Diff line number Diff line change @@ -24,5 +24,5 @@ export function msToTimeStr(ms: number): string {
24
24
* @param amount Amount as a integer/float.
25
25
*/
26
26
export function formatUSD ( amount : number ) : string {
27
- return `$ ${ amount . toFixed ( 2 ) } ` ;
27
+ return `€ ${ amount . toFixed ( 2 ) } ` ;
28
28
}
Original file line number Diff line number Diff line change 4
4
v-show =" prize"
5
5
:class =" vertical ? 'FlexColumn' : 'Flex'"
6
6
:style =" {
7
- 'font-size': '0.8em ', // move to prop?
7
+ 'font-size': '1em ', // move to prop?
8
8
padding: '10px',
9
9
'box-sizing': 'border-box',
10
10
'text-align': 'center',
13
13
<img
14
14
:src =" prize.image"
15
15
:style =" {
16
- height: vertical ? '50 %' : '65 %',
16
+ height: vertical ? '80 %' : '100 %',
17
17
'object-fit': 'contain',
18
18
'max-height': '350px',
19
19
'margin-left': vertical ? 0 : '20px',
Original file line number Diff line number Diff line change 4
4
v-show =" prize"
5
5
:class =" vertical ? 'FlexColumn' : 'Flex'"
6
6
:style =" {
7
- 'font-size': '0.8em ', // move to prop?
7
+ 'font-size': '1em ', // move to prop?
8
8
padding: '10px',
9
9
'box-sizing': 'border-box',
10
10
'text-align': 'center',
21
21
}"
22
22
>
23
23
<div :style =" { 'margin-left': vertical ? 0 : '20px' }" >
24
- <!-- < div
24
+ <div
25
25
:style =" {
26
26
'font-size': '0.7em',
27
27
color: 'white', // move to theme!
31
31
</div >
32
32
<div :style =" { 'font-size': '1em' }" >
33
33
{{ prize.name }}?
34
- </div>-->
34
+ </div >
35
35
<div
36
36
:style =" {
37
37
'font-size': '1em',
You can’t perform that action at this time.
0 commit comments