update search to have searchSmallText class

This commit is contained in:
Akbar Rahman 2023-02-01 13:46:15 +00:00
parent ca58ef6639
commit 82517eda04
Signed by: alvierahman90
GPG Key ID: 20609519444A1269
2 changed files with 5 additions and 1 deletions

View File

@ -7,7 +7,7 @@ example:
<div id="searchWrapper"> <div id="searchWrapper">
<input id="search" placeholder="Search"> <input id="search" placeholder="Search">
</div> </div>
<p class="smallText" style="margin-top: 0; text-align: center"> <p class="searchSmallText" style="margin-top: 0; text-align: center">
Press (<kbd>Shift</kbd>+)<kbd>Enter</kbd> to open first result (in new tab) Press (<kbd>Shift</kbd>+)<kbd>Enter</kbd> to open first result (in new tab)
</p> </p>
<div id="results"> </div> <div id="results"> </div>

View File

@ -20,3 +20,7 @@
#searchResults { #searchResults {
overflow-x: scroll; overflow-x: scroll;
} }
.searchSmallText {
font-size: 0.7em;
}