Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

comply font sizes #93

Merged
merged 1 commit into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/views/Patient/MedReqDropDown/MedReqDropDown.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.etasuButtonText {
margin-bottom: 0px;
font-weight: bold;
font-size: 14px;
font-size: 1.2em;
}

.etasuButton {
Expand Down
2 changes: 1 addition & 1 deletion src/views/Questionnaire/QuestionnaireForm.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
border-top:1px solid #555;
padding-left: 3px;
padding-right:3px;
font-size:13px;
font-size:1.2em;
font-family: 'Courier New', Courier, monospace
}

Expand Down
2 changes: 1 addition & 1 deletion src/views/Questionnaire/QuestionnaireForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@ export function QuestionnaireForm(props: QuestionnaireProps) {
// Get tooltip for Submit button
const getMissingFieldsTooltip = () => {
const tooltip = isFilledOut() ? 'Submit to REMS admin' : 'Fill out missing fields';
return <Typography fontSize={16}>{tooltip}</Typography>;
return <Typography fontSize={'small'}>{tooltip}</Typography>;
};

// Get missing fields to display
Expand Down
2 changes: 1 addition & 1 deletion src/views/Questionnaire/SmartApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ export function SmartApp(props: SmartAppProps) {
} else {
return (
<div className="App">
<p>Loading...</p>
<h1>Loading...</h1>
</div>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
height:500px;
width:70%;
z-index:1;
font-size:14px;
font-size:1.3em;
background-color: #f9f9f9;
border: 1px solid black;
}
Expand All @@ -16,7 +16,7 @@
position: absolute;
left:14%;
top:3px;
font-size: 20px;
font-size: 1.5em;
padding: 15px;
margin: 10px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ body {
.jsonData{
line-height:16px;
font-family: 'Courier New', Courier, monospace;
font-size: 14px;
font-size: 1.3em;

border-left: 2px solid #dddddd;
border-top:0px;
Expand Down
1 change: 1 addition & 0 deletions src/views/Smart/Index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const Index = () => {
FHIR.oauth2.ready().then(client => {
setClient(client);
});
document.title = 'REMS SMART on FHIR app';
}, []);

return (
Expand Down
1 change: 1 addition & 0 deletions src/views/Smart/Launch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const Launch = () => {
</div>
);
useEffect(() => {
document.title = 'REMS SMART on FHIR app launch page';
smartLaunch();
}, []);

Expand Down
6 changes: 4 additions & 2 deletions src/views/Smart/Register.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Button, FormControl, FormHelperText, IconButton, TextField } from '@mui/material';
import React, { FormEvent, memo, useState } from 'react';
import React, { FormEvent, memo, useState, useEffect } from 'react';
import CloseIcon from '@mui/icons-material/Close';

interface RegisterProps {
Expand All @@ -9,7 +9,9 @@ interface RegisterProps {
const Register = (props: RegisterProps) => {
const [clientId, setClientId] = useState<string>('');
const [fhirUrl, setFhirUrl] = useState<string>(props.fhirUrl || '');

useEffect(() => {
document.title = 'Registration page for SMART on FHIR clients';
});
const [currentClients, setCurrentClients] = useState(
JSON.parse(localStorage.getItem('clients') || '[]')
);
Expand Down
Loading