40 lines
582 B
CSS
40 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);
|
||
|
|
}
|
||
|
|
}
|