Creating records in folders

This commit is contained in:
Magnus Åhall 2026-02-25 21:18:00 +01:00
parent df936baa8f
commit 8aef6d8a2e
2 changed files with 20 additions and 2 deletions

View file

@ -138,7 +138,7 @@ button {
&>.label {
display: grid;
grid-template-columns: min-content min-content 1fr;
grid-template-columns: repeat(4, min-content);
align-items: center;
padding: 5px 0px;
cursor: pointer;
@ -149,6 +149,18 @@ button {
margin-right: 6px;
display: none;
}
img.create {
display: none;
height: 16px;
margin-left: 8px;
}
&:hover {
img.create {
display: block;
}
}
}
&>.subfolders {