diff --git a/templates/index.html b/templates/index.html index 0c88ade..b14a12b 100644 --- a/templates/index.html +++ b/templates/index.html @@ -97,6 +97,21 @@ .search-field { position: relative; } + .result-count { + position: absolute; + right: 10px; + top: 50%; + transform: translateY(-50%); + background-color: #e9ecef; + padding: 2px 8px; + border-radius: 12px; + font-size: 0.8em; + color: #6c757d; + display: none; + } + .result-count.visible { + display: block; + }
@@ -108,18 +123,22 @@