responsive time entry modal fixes

This commit is contained in:
Gregor Vostrak
2026-02-10 17:18:49 +01:00
parent 474b294a18
commit a9e03f3b29
3 changed files with 41 additions and 55 deletions

View File

@@ -514,14 +514,14 @@ const showCreateProject = ref(false);
<Button
:variant="props.variant"
:size="props.size"
:class="twMerge('w-full justify-start', props.class)">
:class="twMerge('w-full justify-start overflow-hidden', props.class)">
<div
class="w-3 h-3 rounded-full shrink-0"
:style="{ backgroundColor: selectedProjectColor }"></div>
<span class="truncate">{{ selectedProjectName }}</span>
<span class="truncate shrink-[1] pr-1">{{ selectedProjectName }}</span>
<template v-if="currentTask">
<ChevronRightIcon class="w-4 h-4 text-text-tertiary shrink-0" />
<span class="truncate">{{ currentTask.name }}</span>
<span class="truncate shrink-[100]">{{ currentTask.name }}</span>
</template>
</Button>
<button