Skip to content

Commit

Permalink
Merge pull request #1322 from appwrite/fix-community-page
Browse files Browse the repository at this point in the history
fix: community page
  • Loading branch information
TorstenDittmann authored Sep 9, 2024
2 parents 35ab5da + 9e3ce28 commit aa8ab43
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
23 changes: 12 additions & 11 deletions src/routes/community/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,7 @@
style="--card-padding:2rem; --card-padding-mobile:1.25rem;"
>
<div
class="web-u-flex-direction-column-mobile web-u-row-gap-48
flex gap-24"
class="web-u-flex-direction-column-mobile web-u-row-gap-48 flex gap-28"
>
<div>
<h3 class="text-label text-primary">Check our Open Issues</h3>
Expand All @@ -293,10 +292,10 @@
<thead class="web-table-line-head">
<tr class="web-table-line-row">
<th
class="web-table-line-cell text-primary whitespace-nowrap"
class="web-table-line-cell text-primary whitespace-nowrap text-start"
>Issue #</th
>
<th class="web-table-line-cell text-primary">Title</th>
<th class="web-table-line-cell text-primary text-start">Title</th>
</tr>
</thead>
<tbody class="web-table-line-body">
Expand All @@ -318,13 +317,15 @@
</a>
<span>({issue.repository})</span>
</div>
<ul class="mt-2 flex flex-wrap gap-2">
{#each issue.tags as tag}
<li>
<div class="web-tag">{tag}</div>
</li>
{/each}
</ul>
{#if issue.tags.length > 0}
<ul class="mt-2 flex flex-wrap gap-2">
{#each issue.tags as tag}
<li>
<div class="web-tag">{tag}</div>
</li>
{/each}
</ul>
{/if}
</td>
</tr>
{/each}
Expand Down
2 changes: 1 addition & 1 deletion src/scss/6-elements/_table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
border-block-end:solid pxToRem(1) hsl(var(--web-color-smooth));
}
&-cell {
&:nth-child(n + 2) { padding-inline-start:pxToRem(24); }
&:nth-child(n + 2) { padding-inline-start:pxToRem(48); }
}

&-head {
Expand Down

0 comments on commit aa8ab43

Please sign in to comment.