Skip to content

Commit 1224478

Browse files
committed
make font configurable
1 parent db89199 commit 1224478

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

web/src/app/components/help-dialog/confirm-help.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Component, Inject } from "@angular/core";
88
99
<div mat-dialog-content class="text">
1010
<p *ngIf="data">Your help request has been recieved; A member of our support staff is on their way.</p>
11-
<p *ngIf="!data">Your help request failed to send; Please try again</p>
11+
<p *ngIf="!data">Your help request failed to send; Please try again or call AV Support at 801-422-7671</p>
1212
</div>
1313
1414
<div mat-dialog-actions class="items secondary-theme">
@@ -22,7 +22,7 @@ import { Component, Inject } from "@angular/core";
2222
`
2323
.text {
2424
text-align: center;
25-
font-family: Roboto, "Helvetica Neue", sans-serif;
25+
font-family: var(--main-font);
2626
}
2727
2828
.items {

web/src/app/components/help-dialog/help-dialog.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.text {
22
text-align: center;
3-
font-family: Roboto, "Helvetica Neue", sans-serif;
3+
font-family: var(--main-font);
44
font-size: 1.3em;
55
margin-top: 3vh;
66
margin-bottom: 3vh;

0 commit comments

Comments
 (0)