1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-22 11:52:21 +01:00

(ui) restor deleted table's style

This commit is contained in:
Vincent 2023-05-31 14:55:09 +02:00
parent c019f3ad3e
commit 549983a35d
2 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,5 @@
.edit-destroy-buttons { .edit-destroy-buttons {
width: fit-content; width: max-content;
flex-shrink: 0; flex-shrink: 0;
border-radius: var(--border-radius-sm); border-radius: var(--border-radius-sm);
overflow: hidden; overflow: hidden;

View File

@ -55,6 +55,18 @@
} }
} }
table {
thead > tr {
th.group-name,
th.name {
width: 40%
}
th.actions {
width: 20%;
}
}
}
.document-list { .document-list {
display: grid; display: grid;
grid-template-columns: repeat(auto-fill, minmax(min-content, 50rem)); grid-template-columns: repeat(auto-fill, minmax(min-content, 50rem));
@ -83,4 +95,4 @@
text-align: center; text-align: center;
} }
} }
} }