mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 05:45:46 +00:00
2dc949f17d
* ui: CopyableCode component plus switch into existing implementations
--- 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; } ```