Skip to content

Commit

Permalink
Prevent line break
Browse files Browse the repository at this point in the history
  • Loading branch information
SRichner committed Feb 28, 2024
1 parent 6cee12f commit 4b1e6c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/electron/src/views/AboutView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ onMounted(async () => {
<span class="loading loading-spinner loading-lg" />
</div>
<div v-else class="ml-6 mt-4">
<article class="prose-lg prose mt-4">
<article class="prose prose-lg mt-4">
<h1 class="relative">
<span class="primary-blue">{{ studyInfo.studyName }}</span>
<span class="badge badge-neutral absolute top-0">v{{ studyInfo.appVersion }}</span>
Expand All @@ -25,7 +25,7 @@ onMounted(async () => {

<StudyInfo :study-info="studyInfo" />

<article class="prose-lg prose mt-4">
<article class="prose prose-lg mt-4">
<h2 class="mt-0">Monitoring Tool Info</h2>
<p>
PersonalAnalytics is a software, developed by the Human Aspects of Software Engineering
Expand All @@ -37,7 +37,7 @@ onMounted(async () => {
<table class="table-auto">
<tbody>
<tr>
<td>Active Trackers:</td>
<td class="w-40">Active Trackers:</td>
<td>{{ studyInfo.currentlyActiveTrackers.join(', ') }}</td>
</tr>
<tr>
Expand Down

0 comments on commit 4b1e6c5

Please sign in to comment.