1
0

fix(task): align task title on mobile popup

(cherry picked from commit cc64ca640635ad888670cb48bba390d2a8a07d8d)
This commit is contained in:
kolaente
2024-09-18 11:36:06 +02:00
parent 6ab12b9dd1
commit a46009dfc9
4 changed files with 66 additions and 26 deletions

View File

@ -16,6 +16,7 @@
:task="task"
:can-write="canWrite"
@update:task="Object.assign(task, $event)"
@close="$emit('close')"
/>
<h6
v-if="project?.id"
@ -970,9 +971,8 @@ function setRelatedTasksActive() {
color: var(--text);
background-color: var(--site-background) !important;
@media screen and (max-width: 800px) {
@media screen and (max-width: calc(#{$desktop} + 1px)) {
border-radius: 0;
padding-top: 2rem;
}
}