Skip to content

Commit

Permalink
Fixed weird wrapping problem
Browse files Browse the repository at this point in the history
  • Loading branch information
joshniemela committed Feb 1, 2024
1 parent 40c8bd7 commit 6aac319
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/OverviewCard/OverviewCard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
</div>
<!--stats table, contains pass_rate, median_grade, and avg_grade-->
{#if course.statistics}
<table class="text-xs">
<table class="text-xs whitespace-nowrap">
<tr>
<td class="border-e border-b border-white px-1"> Pass</td>

Expand Down Expand Up @@ -155,7 +155,7 @@
</tr>
</table>
{:else}
<table class="text-xs">
<table class="text-xs whitespace-nowrap">
<tr>
<td class="border-e border-b border-white px-1"> Pass</td>

Expand Down

0 comments on commit 6aac319

Please sign in to comment.