Skip to content

Commit

Permalink
web/ProcessingQueueItem: mobile css fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
wukko committed Jan 31, 2025
1 parent 00d376d commit ef08633
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 3 additions & 1 deletion web/src/components/queue/ProcessingQueue.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@
flex-direction: row;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 6px;
}
.header-buttons {
Expand Down Expand Up @@ -157,7 +159,7 @@
flex-direction: column;
max-height: 65vh;
overflow: scroll;
overflow-y: scroll;
}
@media screen and (max-width: 535px) {
Expand Down
10 changes: 9 additions & 1 deletion web/src/components/queue/ProcessingQueueItem.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,10 @@
.file-actions {
display: flex;
flex-direction: row;
justify-content: center;
justify-content: flex-start;
align-items: center;
position: relative;
overflow: hidden;
}
.processing-item {
Expand Down Expand Up @@ -209,6 +210,13 @@
}
}
/* TODO: fix this shitty workaround */
@media(hover: none) {
.processing-info {
width: calc(100% - 80px);
}
}
.action-button {
padding: 8px;
height: auto;
Expand Down

0 comments on commit ef08633

Please sign in to comment.