Skip to content

Commit 0161e7e

Browse files
authored
Add scrollable table for downloads (#231)
1 parent b691e0c commit 0161e7e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

container_provisioner/views/downloads.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@
9797
text-align: center;
9898
padding: 10px 0; /* Adjust padding as needed */
9999
}
100+
101+
/* CSS */
102+
.scrollable-table {
103+
overflow-y: auto;
104+
height: 400px; /* Adjust as needed */
105+
}
100106
</style>
101107
</head>
102108
<body>
@@ -110,7 +116,7 @@ <h1><a href="/">Return Home</a></h1>
110116

111117
<div class="flex-container">
112118
<!-- Table -->
113-
<div class="table-container">
119+
<div class="table-container scrollable-table">
114120
<table>
115121
<!-- <h2>Files that are currently available:</h2> -->
116122
<thead>

0 commit comments

Comments
 (0)