Skip to content
This repository was archived by the owner on Jan 9, 2026. It is now read-only.

Commit 23dccd9

Browse files
committed
fix table overflow
1 parent c6e0206 commit 23dccd9

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

typescript-directory-sync-example/public/stylesheets/style.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,12 @@ th {
354354
padding: 15px 40px;
355355
}
356356

357+
.webhooks-container,
358+
.table-container {
359+
max-height: 600px;
360+
overflow-y: scroll;
361+
}
362+
357363
.width-75 {
358364
width: 75%;
359365
}

typescript-directory-sync-example/views/groups.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
</div>
4040
</div>
4141
<% if (groups.length > 0) { %>
42-
<div>
42+
<div class="table-container">
4343
<table class="width-507px">
4444
<tr>
4545
<th>Name</th>

typescript-directory-sync-example/views/users.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
</div>
4040
</div>
4141
<% if (users.length > 0) { %>
42-
<div>
42+
<div class="table-container">
4343
<table class="width-507px">
4444
<tr>
4545
<th>Name</th>

0 commit comments

Comments
 (0)