Skip to content

Commit

Permalink
feat(@dpc-sdp/ripple-tide-search): added helper components for laying…
Browse files Browse the repository at this point in the history
… out result tables
  • Loading branch information
jeffdowdle committed Jul 3, 2024
1 parent db90aac commit 87a470b
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<template>
<div class="tide-search-result-cell"><slot></slot></div>
</template>

<style>
.tide-search-result-cell {
display: flex;
flex-direction: column;
gap: var(--rpl-sp-3);
address {
font-style: normal;
}
}
</style>
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<template>
<h4
class="tide-search-result-table-heading"
>
<slot></slot>
</h4>
</template>


<style>
@import '@dpc-sdp/ripple-ui-core/style/breakpoints';
.tide-search-result-table-heading {
font-weight: bold;
}
</style>

0 comments on commit 87a470b

Please sign in to comment.