Skip to content

Commit

Permalink
Merge branch 'main' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Vedant Singhania authored Jul 2, 2024
2 parents 82f76ef + 13434f1 commit 6b9bbea
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
16 changes: 16 additions & 0 deletions guidemaker-ember-template/src/styles/addon.css
Original file line number Diff line number Diff line change
Expand Up @@ -224,3 +224,19 @@ h5 > a:hover > svg,
h6 > a:hover > svg {
fill: var(--color-brand);
}


/* table styles */
table {
width: 100%;
text-align: left;
border-collapse: collapse;
}
thead th{
background-color: var(--color-gray-200);
}
td, th {
border: 1px solid var(--color-gray-300);
padding: var(--spacing-1);
}

14 changes: 14 additions & 0 deletions test-app/guides/release/examples/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,17 @@ Asterisks
___

Underscores

# Tables
<table>
<thead>
<tr><th>Action</th><th>HTTP Verb</th><th>URL</th></tr>
</thead>
<tbody>
<tr><th>Find Record</th><td>GET</td><td>/posts/123</td></tr>
<tr><th>Find All</th><td>GET</td><td>/posts</td></tr>
<tr><th>Update</th><td>PUT</td><td>/posts/123</td></tr>
<tr><th>Create</th><td>POST</td><td>/posts</td></tr>
<tr><th>Delete</th><td>DELETE</td><td>/posts/123</td></tr>
</tbody>
</table>

0 comments on commit 6b9bbea

Please sign in to comment.