Skip to content
Snippets Groups Projects
Commit 6605f522 authored by aradjafari's avatar aradjafari
Browse files

SCrolling box fix

parent a9b93cdd
No related branches found
No related tags found
No related merge requests found
......@@ -57,9 +57,12 @@
}
}
table {
#tableContainer{
position: absolute;
margin-top: 5vh;
}
table {
table-layout:fixed;
width: 100%;
text-align: center;
......
// Returns list of movies
function PrintTable(props: any) {
return (
<table>
<div id="tableContainer"><table>
<thead>
<tr>
<th>Title</th>
......@@ -23,7 +23,7 @@ function PrintTable(props: any) {
<td><img className="thumbnails" src = {row.cover_image} alt={row.title}></img></td>
</tr>;
})
}</tbody></table>
}</tbody></table></div>
)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment