Skip to content

Commit b8df257

Browse files
committed
fix: add vertical scrolling to trusted accounts table
1 parent c9f29c5 commit b8df257

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

internal/adapters/entrypoints/rest/assets/management.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ <h5 class="card-title">Accounts List</h5>
7878
<i class="bi bi-plus-circle"></i> Add Account
7979
</button>
8080
</div>
81-
<div class="table-responsive">
81+
<div class="table-responsive" id="trustedAccountsContainer">
8282
<table class="table table-striped" id="trustedAccountsTableWrapper">
8383
<thead>
8484
<tr>

internal/adapters/entrypoints/rest/assets/static/management.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@
7979
overflow-x: auto;
8080
}
8181

82+
#trustedAccountsContainer {
83+
max-height: 205px;
84+
overflow-y: auto;
85+
}
86+
8287
#trustedAccountsTable button {
8388
white-space: nowrap;
8489
}

0 commit comments

Comments
 (0)