feat: started to work on table

This commit is contained in:
Alexander Daichendt 2022-07-26 17:52:10 +02:00
parent 7561329158
commit 68e0efd51c
6 changed files with 47 additions and 9 deletions

View file

@ -0,0 +1,19 @@
<script>
</script>
<table id="table">
<slot />
</table>
<style>
table {
background-color: var(--light-color);
border-radius: 1rem;
padding: 1rem;
box-shadow: 0px 0px 2px var(--shadow-color);
border: 1px solid var(--outline-color);
}
:global(#table tbody tr) {
margin: 1rem;
}
</style>