Skip to content

Commit

Permalink
Merge pull request #50 from wildjames/dev
Browse files Browse the repository at this point in the history
fix the inputs for task creation in mobile (kinda)
  • Loading branch information
wildjames authored Nov 1, 2023
2 parents 373122c + c26dbf2 commit 0976da6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions todoqueue_frontend/src/components/tasks/Tasks.css
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@
/* Center tasks horizontally */
gap: 120px;
/* Spacing between tasks */
bottom: 100px;
/* Lower bottom since the scores disappear */
}

.Tasks .task-wrapper {
Expand Down Expand Up @@ -305,6 +307,12 @@
padding: 0.5rem;
}

@media (max-width: 800px) {
.input-pair-container .task-input-group input {
max-width: 125px;
}
}

.input-pair-container .task-input-group label {
text-align: left;
}
Expand Down Expand Up @@ -355,6 +363,12 @@
max-width: 90px;
}

@media (max-width: 800px) {
.task-input-group-horizontal input {
max-width: 50px;
}
}

.task-input-group-horizontal.no-max-width input {
max-width: none;
}
Expand Down

0 comments on commit 0976da6

Please sign in to comment.