Ronald 9d21736e9f
Add UI copyright headers files (#16614)
* Add copyright headers to UI files

* Ensure copywrite file ignores external libs
2023-03-14 09:18:55 -04:00
..
2022-07-07 17:42:47 +01:00

---
class: css
---
# definition-table

Simple CSS component to render a `dl` similar to a table with column headers.

```hbs preview-template
<div class="definition-table">
  <dl>
    <dt>Title 1</dt>
    <dd>Value</dd>
    <dt>Title 2</dt>
    <dd>
      <CopyableCode
        @name="Title 2"
        @value="Value"
      />
    </dd>
  </dl>
</div>
```


```css
.definition-table {
  @extend %definition-table;
}
```