Skip to content

Commit d2ef56b

Browse files
committed
Reduce table view font size
Plus tidy HTML
1 parent e85da3e commit d2ef56b

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

src/styles/cylc/_table.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
*/
1717

1818
.c-table {
19+
.v-data-table {
20+
font-size: 0.9em;
21+
}
22+
1923
th, td {
2024
white-space: nowrap;
2125
}

src/views/Table.vue

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
1717

1818
<template>
1919
<div class="h-100">
20-
<div class="c-table h-100">
21-
<table-component
22-
:tasks="tasks"
23-
ref="table0"
24-
key="table0"
25-
></table-component>
26-
</div>
20+
<TableComponent
21+
:tasks="tasks"
22+
ref="table0"
23+
key="table0"
24+
/>
2725
</div>
2826
</template>
2927

0 commit comments

Comments
 (0)