We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 370ac95 commit d1a54ecCopy full SHA for d1a54ec
src/components/table/LogTable.vue
@@ -211,7 +211,7 @@ function onScroll() {
211
.log-table {
212
width: 100%;
213
height: 100%;
214
- overflow: scroll;
+ overflow: hidden;
215
216
&__table {
217
width: calc(100% - 12px);
@@ -248,6 +248,8 @@ function onScroll() {
248
249
:deep(th),
250
:deep(td) {
251
+ flex-shrink: 0;
252
+
253
// level column
254
&:nth-child(1) {
255
width: 108px;
@@ -263,7 +265,7 @@ function onScroll() {
263
265
}
264
266
// time column
267
&:nth-child(4) {
- width: 168px;
268
+ width: 25ch; // "Mar 10, 2025, 12:00:00 PM" length
269
270
// actions column
271
&:last-child {
0 commit comments