Removing br tags so an empty description doesn't add space

This commit is contained in:
Kris 2018-09-05 13:33:06 -04:00
parent a8742f4c64
commit 6904e516ae
2 changed files with 1 additions and 2 deletions

View File

@ -168,9 +168,7 @@
<td> <td>
<a {{action "scrollTop"}} href="/admin/plugins/explorer/?id={{query.id}}"> <a {{action "scrollTop"}} href="/admin/plugins/explorer/?id={{query.id}}">
<b class="query-name">{{query.name}}</b> <b class="query-name">{{query.name}}</b>
<br>
<medium class="query-desc">{{query.description}}</medium> <medium class="query-desc">{{query.description}}</medium>
<br>
</a> </a>
</td> </td>
<td class="query-created-by"> <td class="query-created-by">

View File

@ -275,6 +275,7 @@
color: $primary; color: $primary;
} }
.query-desc { .query-desc {
display: block;
color: $primary-high; color: $primary-high;
} }
.query-created-by { .query-created-by {