Skip to content

Commit

Permalink
NEW: Component: Matches (#99)
Browse files Browse the repository at this point in the history
closes #99
  • Loading branch information
dwhieb committed Jun 9, 2024
1 parent 5b8d7b8 commit 4e9e765
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions pages/Component/Component.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ legend {

#main {
max-inline-size: min(60em, 100%);
row-gap: 1em;
}

.page-title {
Expand Down
16 changes: 15 additions & 1 deletion pages/Component/Component.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,21 @@

<fieldset>
<legend class=label>Matches</legend>
<dl></dl>
<dl>

<dt>AI</dt>
<dd>{{#if matches.AI }}{{ matches.AI }}{{else}}{{/if}}</dd>

<dt>II</dt>
<dd>{{#if matches.II }}{{ matches.II }}{{else}}{{/if}}</dd>

<dt>TA</dt>
<dd>{{#if matches.TA }}{{ matches.TA }}{{else}}{{/if}}</dd>

<dt>TI</dt>
<dd>{{#if matches.TI }}{{ matches.TI }}{{else}}{{/if}}</dd>

</dl>
</fieldset>

<fieldset>
Expand Down

0 comments on commit 4e9e765

Please sign in to comment.