Made UI feel more consistent

This commit is contained in:
2025-10-28 14:57:31 -04:00
parent 94fd41e424
commit 18ebebdcb7
2 changed files with 41 additions and 1 deletions

View File

@ -321,4 +321,44 @@ button:hover {
padding: var(--spacing-small);
margin-bottom: var(--spacing-small);
color: var(--text-secondary);
}
.control-group {
margin-bottom: var(--spacing-small);
display: flex;
flex-direction: column;
}
.position-inputs {
max-height: 400px;
overflow-y: auto;
padding: var(--spacing-small);
background-color: var(--background-dark);
border-radius: var(--border-radius-sm);
margin-top: var(--spacing-small);
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.preset-buttons {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.module-display {
background-color: var(--background-dark);
border: 2px solid var(--border-color);
border-radius: var(--border-radius-sm);
padding: var(--spacing-small);
}
.readout {
display: flex;
justify-content: space-between;
margin-bottom: calc(var(--spacing-small) / 2);
}
.readout .value {
color: var(--text-light);
font-weight: bold;
}