Skip to content

Commit

Permalink
Merge pull request #156 from DSACMS/nat/minor-ui-fixes
Browse files Browse the repository at this point in the history
Frontend: Minor UI Fixes
  • Loading branch information
natalialuzuriaga authored Sep 19, 2024
2 parents 9d609ee + 4e44f04 commit 5b29e5b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
15 changes: 12 additions & 3 deletions frontend/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ h2,
width: 100%;
}

#submit {
margin-top: 10px;
margin-bottom: 10px;
}

.usa-button-group {
justify-content: center;
}
Expand Down Expand Up @@ -70,9 +75,13 @@ img {
animation: spin 2s linear infinite;
}

.security-info {
padding-inline-start: 0;
list-style-position: inside;
ul,
ol {
padding-left: 15px;
}

ol {
margin-bottom: 0px;
}

@keyframes spin {
Expand Down
2 changes: 1 addition & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h1>DedupliFHIR</h1>
/>
</div>
<div class="usa-form-group">
<label class="usa-label" for="options">Select file format for results data</label>
<label class="usa-label" for="options">Select file format for your results data</label>
<select class="usa-select" name="options" id="options">
<option value=".xlsx" selected="selected" >.xlsx</option>
<option value=".csv">.csv</option>
Expand Down
4 changes: 3 additions & 1 deletion frontend/pages/success.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ <h4 class="usa-alert__heading">Error</h4>
<div class="results-spreadsheet-instructions" id="results-spreadsheet-instructions">
<p>
<b>To find possible duplicates:</b>
<ol>
<li>Open your results file.</li>
<li>Find the records with the same <b>cluster_id</b>.<br><a href="https://github.com/DSACMS/dedupliFHIR/blob/main/research/sept-2024/examples-use-clusterid-to-find-possible-duplicates.md" target="_blank">(See examples.)</a></li>
<li>Find the records with the same <b>cluster_id</b>.</li>
</ol>
<a href="https://github.com/DSACMS/dedupliFHIR/blob/main/research/sept-2024/examples-use-clusterid-to-find-possible-duplicates.md" target="_blank">(See examples.)</a>
</p>
</div>
<button type="button" class="usa-button" id="save-file">Save the results file</button>
Expand Down

0 comments on commit 5b29e5b

Please sign in to comment.