frontend: add hosting tablr scroll indicator

This commit is contained in:
tylen
2025-11-02 00:29:21 +02:00
parent ed5747e69b
commit 9a192c9b61
2 changed files with 14 additions and 2 deletions

View File

@@ -53,7 +53,7 @@ function Hosting() {
{loading && <div>Loading...</div>}
{error && <div>Error</div>}
{data && (
<div className="table-wrapper">
<div className="table-wrapper scroll-indicator">
<table>
<thead>
<tr>
@@ -72,6 +72,7 @@ function Hosting() {
))}
</tbody>
</table>
<p className="scroll-instruction">Таблицу можно скроллить</p>
</div>
)}
</CenteredContainer>