taf/styles/Apps/Ask.css
Oliver 61f41d610e
Merge pull request #29 from Oliver-Akins/GH-17
Make the checkbox inputs right-aligned in the Ask application
2025-07-25 22:46:34 -06:00

48 lines
604 B
CSS

.taf.Ask {
min-width: 330px;
.prompt {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 1rem;
align-items: center;
}
.window-content {
gap: 1rem;
overflow: auto;
}
.dialog-content {
display: flex;
flex-direction: column;
gap: 8px;
}
.control-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
button {
flex-grow: 1;
}
}
label {
color: var(--color-form-label);
font-weight: bold;
}
p {
margin: 0;
grid-column: 1 / -1;
text-indent: 1em;
}
input[type="checkbox"] {
align-self: center;
justify-self: right;
margin: 0;
}
}