Skip to content

Commit c3cffc0

Browse files
committed
remove white-space: nowrap to actually fix the issues
1 parent 421a83e commit c3cffc0

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/frontend/src/components/CarTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import BlankIcon from './icons/BlankIcon.vue';
1010
<template>
1111
<Loading v-if="loading" />
1212
<div v-else>
13-
<table class="table whitespace-normal">
13+
<table class="table">
1414
<thead>
1515
<tr>
1616
<th scope="col" @click="changeSort('driver')">

src/frontend/src/views/HomeView.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ export default defineComponent({
112112
113113
.noOverflow > * {
114114
overflow: auto;
115-
white-space: nowrap;
116115
text-overflow: ellipsis;
117116
}
118117

0 commit comments

Comments
 (0)