diff --git a/guidemaker-ember-template/src/styles/addon.css b/guidemaker-ember-template/src/styles/addon.css index df3b63e..cba33c2 100644 --- a/guidemaker-ember-template/src/styles/addon.css +++ b/guidemaker-ember-template/src/styles/addon.css @@ -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); +} + diff --git a/test-app/guides/release/examples/index.md b/test-app/guides/release/examples/index.md index 5bfa05b..842b7f8 100644 --- a/test-app/guides/release/examples/index.md +++ b/test-app/guides/release/examples/index.md @@ -70,3 +70,17 @@ Asterisks ___ Underscores + +# Tables + + + + + + + + + + + +
ActionHTTP VerbURL
Find RecordGET/posts/123
Find AllGET/posts
UpdatePUT/posts/123
CreatePOST/posts
DeleteDELETE/posts/123