Skip to content

Commit

Permalink
Remove top border of frequency table row
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Tideman committed Aug 30, 2023
1 parent fabe533 commit eb60cb7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib/components/schedule/schedules-table-row.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
{/each}
</td>
</TableRow>
<TableRow>
<TableRow class="row">
<td colspan="5" class="hidden xl:table-cell !p-0">
<ScheduleFrequency {calendar} {interval} inline class="text-sm w-auto" />
</td>
Expand All @@ -99,4 +99,8 @@
.cell {
@apply p-2 text-left;
}
:global(.row td) {
@apply !border-t-0;
}
</style>

0 comments on commit eb60cb7

Please sign in to comment.