Skip to content

Commit

Permalink
tweak table column widths based on discussion in meeting
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenClontz committed Dec 15, 2023
1 parent 0635404 commit c81514b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/viewer/src/components/Properties/List.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<thead>
<tr>
<th style="width: 5%" on:click={properties.sort('id')}>Id</th>
<th style="width: 20%" on:click={properties.sort('name')}>Name</th>
<th style="width: 75%">Description</th>
<th style="width: 25%" on:click={properties.sort('name')}>Name</th>
<th style="width: 70%">Description</th>
</tr>
</thead>
{#each $properties as property (property.id)}
Expand Down
4 changes: 2 additions & 2 deletions packages/viewer/src/components/Spaces/List.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<thead>
<tr>
<th style="width: 5%" on:click={spaces.sort('id')}>Id</th>
<th style="width: 20%" on:click={spaces.sort('name')}>Name</th>
<th style="width: 75%">Description</th>
<th style="width: 35%" on:click={spaces.sort('name')}>Name</th>
<th style="width: 60%">Description</th>
</tr>
</thead>
{#each $spaces as space (space.id)}
Expand Down
4 changes: 2 additions & 2 deletions packages/viewer/src/components/Theorems/List.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<thead>
<tr>
<th style="width: 5%" on:click={theorems.sort('id')}>Id</th>
<th style="width: 20%">If</th>
<th style="width: 30%">If</th>
<th style="width: 20%">Then</th>
<th style="width: 55%">Description</th>
<th style="width: 45%">Description</th>
</tr>
</thead>
{#each $theorems as theorem (theorem.id)}
Expand Down

0 comments on commit c81514b

Please sign in to comment.