Skip to content

Commit

Permalink
Replace hardcoded style attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystucki committed Mar 7, 2024
1 parent f663336 commit ec0f216
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@
v-for="category in mappedCategories"
:key="category.name"
>
<td style="vertical-align:bottom;padding-right:1em;text-align:end">
<td class="align-bottom pr-4 text-end">
{{ category.name }}
</td>
<td style="padding-top:8px">
<td class="pt-3">
<BeautifulProgressIndicator
:required="category.required_ects"
:earned="category.earnedCredits"
Expand All @@ -98,10 +98,10 @@
</td>
</tr>
<tr>
<td style="vertical-align:bottom;padding-right:1em;text-align:end">
<td class="align-bottom pr-4 text-end">
Total
</td>
<td style="padding-top:8px">
<td class="pt-3">
<BeautifulProgressIndicator
:required="180"
:earned="totalEarnedEcts"
Expand Down

0 comments on commit ec0f216

Please sign in to comment.