webtools/site/queued-pastes/style.css
Leon Mika de63c48da2
Some checks failed
/ publish (push) Failing after 1m21s
Added Queued Pastes
2026-09-16 21:52:03 +10:00

39 lines
582 B
CSS

.queue-controls {
display: flex;
justify-content: flex-end;
margin-bottom: 16px;
}
.queue-controls label {
margin: 0;
}
.controls {
display: flex;
align-items: center;
justify-content: space-between;
}
.controls label {
margin: 0;
}
.controls-right {
display: flex;
align-items: center;
gap: 1.5rem;
}
.controls-right button {
width: auto;
}
textarea.paste-active::first-line {
background-color: rgb(209, 213, 219);
}
@media (prefers-color-scheme: dark) {
textarea.paste-active::first-line {
background-color: rgb(77, 83, 94);
}
}