set fixed width for document view table

This commit is contained in:
smanylov
2026-06-08 15:16:08 +07:00
parent 98cb5ab09b
commit 6696cc1027
2 changed files with 26 additions and 11 deletions
+20 -5
View File
@@ -910,13 +910,28 @@
}
}
/* &:has(.column-location) {
width: 250px;
} */
&:has(.column-document) {
width: 35%;
}
&:has(.column-viewer-date) {
width: 15%;
}
&:has(.column-viewer) {
width: 25%;
}
&:has(.column-location) {
width: 25%;
}
.column-document,
.column-viewer-date,
.column-viewer,
.column-location {
width: 250px;
margin: 0 auto;
/* width: 250px;
margin: 0 auto; */
overflow: hidden;
}