Skip to content

Commit d1a54ec

Browse files
committed
fixup! style fixes
Signed-off-by: Maksim Sukharev <[email protected]>
1 parent 370ac95 commit d1a54ec

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/components/table/LogTable.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ function onScroll() {
211211
.log-table {
212212
width: 100%;
213213
height: 100%;
214-
overflow: scroll;
214+
overflow: hidden;
215215
216216
&__table {
217217
width: calc(100% - 12px);
@@ -248,6 +248,8 @@ function onScroll() {
248248
249249
:deep(th),
250250
:deep(td) {
251+
flex-shrink: 0;
252+
251253
// level column
252254
&:nth-child(1) {
253255
width: 108px;
@@ -263,7 +265,7 @@ function onScroll() {
263265
}
264266
// time column
265267
&:nth-child(4) {
266-
width: 168px;
268+
width: 25ch; // "Mar 10, 2025, 12:00:00 PM" length
267269
}
268270
// actions column
269271
&:last-child {

0 commit comments

Comments
 (0)