Skip to content

Commit

Permalink
Remove Placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrandomnumber committed Jul 20, 2024
1 parent 8188e48 commit 9e4fcc4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions layouts/ecosystem-catalog/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<div id="search-container">
<div class="row">
<div class="col-12 pr">
<input type="text" id="search-box" placeholder="THIS IS A TEST FEATURE" />
<input type="text" id="search-box" placeholder="Search the catalog..." />
<button id="search-button">SEARCH</button>
</div>
</div>
Expand Down Expand Up @@ -154,7 +154,12 @@
color: black;
}

.search-results {
.search-result p {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis; /* This adds the ellipsis */
}

.search-result {
Expand Down

0 comments on commit 9e4fcc4

Please sign in to comment.