Added Queued Pastes
Some checks failed
/ publish (push) Failing after 1m21s

This commit is contained in:
Leon Mika 2026-09-16 21:52:03 +10:00
parent 40e5379eb3
commit de63c48da2
9 changed files with 415 additions and 1 deletions

View file

@ -0,0 +1,39 @@
.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);
}
}