Skip to content
Snippets Groups Projects
Commit cd00657a authored by Pierre-Jean CHANCELLIER's avatar Pierre-Jean CHANCELLIER
Browse files

improve tables display

parent 1f495159
No related branches found
No related tags found
No related merge requests found
...@@ -76,6 +76,10 @@ $info: #0a8299; ...@@ -76,6 +76,10 @@ $info: #0a8299;
.td-date { .td-date {
width: 165px; width: 165px;
} }
.td-pubkey {
width: 200px;
}
} }
.list-group-item { .list-group-item {
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
</th> </th>
<th <th
scope="col" scope="col"
class="d-none d-md-table-cell p-0" class="td-pubkey d-none d-lg-table-cell p-0"
@click="sort('pubkey')" @click="sort('pubkey')"
v-if="['search', 'favoris'].includes(type)"> v-if="['search', 'favoris'].includes(type)">
<BtnSort <BtnSort
...@@ -89,7 +89,7 @@ ...@@ -89,7 +89,7 @@
</div> </div>
</th> </th>
<td <td
class="d-none d-md-table-cell" class="d-none d-lg-table-cell"
v-if="['search', 'favoris'].includes(type)" v-if="['search', 'favoris'].includes(type)"
@click="redirect(member.hash)"> @click="redirect(member.hash)">
{{ member.pubkey.substring(0, 10) }} {{ member.pubkey.substring(0, 10) }}
...@@ -219,3 +219,9 @@ export default { ...@@ -219,3 +219,9 @@ export default {
} }
} }
</script> </script>
<style lang="scss" scoped>
tbody tr {
height: 90px;
}
</style>
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
v-if=" v-if="
idSearch && param.length > 2 && !$apollo.queries.idSearch.loading idSearch && param.length > 2 && !$apollo.queries.idSearch.loading
"> ">
<div class="col-lg-9 col-xl-8 m-auto"> <div class="col m-auto">
<MemberList :members="idSearch.ids" type="search" /> <MemberList :members="idSearch.ids" type="search" />
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment