Add Unit defaults import link

This commit is contained in:
2024-05-04 01:47:53 +02:00
parent 8c11caaa4b
commit b4212298df
4 changed files with 17 additions and 1 deletions

View File

@@ -468,3 +468,15 @@ table.items select:focus-visible {
.unwrappable {
white-space: nowrap;
}
.buttongrid {
display: grid;
gap: 0.4em;
grid-template-areas: "context empty tools";
grid-template-columns: auto 1fr auto;
grid-template-rows: max-content;
}
.tools {
grid-area: tools;
}