Fixup some layout gap issues

This commit is contained in:
Johannes Zellner
2025-02-16 15:56:33 +01:00
parent 26b88a55e0
commit e6079ee275
4 changed files with 24 additions and 25 deletions

View File

@@ -87,6 +87,9 @@ footer > .p {
}
.table-actions {
display: flex;
justify-content: end;
gap: 6px;
/* those margins will give table rows in Pankow TableViews some more space */
margin-top: 4px;
margin-bottom: 4px;
@@ -132,6 +135,25 @@ tr:hover .table-actions {
font-size: 12px;
}
.section-header {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
margin-top: 50px;
gap: 5px;
padding-right: 15px;
}
.section-header > div {
display: flex;
gap: 6px;
}
h1.section-header {
margin-top: 20px;
}
/* info table label:value in Sections */
.info-row {
display: flex;