fix teveel klanten

This commit is contained in:
2025-03-16 21:51:32 +01:00
parent 2d444b0300
commit 1dda26b35f
2 changed files with 22 additions and 16 deletions

View File

@@ -19,6 +19,7 @@
Klant toevoegen Klant toevoegen
</button> </button>
</div> </div>
<div class="results">
<table class="styled-table"> <table class="styled-table">
<thead> <thead>
<tr> <tr>
@@ -33,7 +34,7 @@
</tr> </tr>
</tbody> </tbody>
</table> </table>
</div>
</div> </div>
</div> </div>

View File

@@ -15,6 +15,7 @@ h2 {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
overflow-y: unset;
} }
.styled-table { .styled-table {
@@ -25,7 +26,7 @@ h2 {
text-align: left; /* Tekst uitlijning */ text-align: left; /* Tekst uitlijning */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Zachte schaduw */ box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Zachte schaduw */
border-radius: 10px; /* Afgeronde hoeken */ border-radius: 10px; /* Afgeronde hoeken */
overflow: hidden; /* Hoeken correct afronden */ overflow: scroll; /* Hoeken correct afronden */
} }
.styled-table thead { .styled-table thead {
@@ -60,6 +61,7 @@ h2 {
.toolbar { .toolbar {
button { button {
margin-left: 8px; margin-left: 8px;
position: sticky;
} }
margin-bottom: 12px; margin-bottom: 12px;
@@ -69,4 +71,7 @@ h2 {
} }
.results{
overflow-y: scroll;
}