Skip to content

Commit 0383602

Browse files
authored
Merge pull request #2909 from Brett-S-OWB/text-size-daily-totals
Adjust table text (daily totals Slide) size for desktop - larger
2 parents 1cc2abc + 7beb4ba commit 0383602

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

packages/modules/web_themes/koala/source/src/components/DailyTotals.vue

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
v-if="componentNameVisible"
4242
key="title"
4343
:props="props"
44-
class="text-body2 text-weight-bold"
44+
class="text-weight-bold"
4545
>
4646
{{ props.row.title }}
4747
</q-td>
@@ -76,7 +76,7 @@
7676
v-if="currentPowerVisible"
7777
key="power"
7878
:props="props"
79-
class="text-right text-body2"
79+
class="text-right"
8080
>
8181
{{ String(props.row.power).replace('-', '') }}
8282
</q-td>
@@ -434,4 +434,10 @@ watch(rows, calculateRowHeight, { deep: true });
434434
.rotate-180 {
435435
transform: rotate(180deg);
436436
}
437+
438+
@media (min-width: 500px) {
439+
.banner-table tbody td {
440+
font-size: 15px;
441+
}
442+
}
437443
</style>

0 commit comments

Comments
 (0)