Skip to content

Commit

Permalink
Increase width of version tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
Gawdl3y committed Jun 11, 2024
1 parent 2e12365 commit 9021d38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/components/mods/ModVersionStatus.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<v-tooltip :open-delay="500">
<v-tooltip :open-delay="500" model-value>
<template #activator="{ props: tooltipProps }">
<div class="d-flex h-100 position-relative">
<v-scroll-y-transition>
Expand Down Expand Up @@ -53,6 +53,6 @@ const tooltipWidth = computed(() => {
const anyUnrecognized =
mod.installedVersion?.isUnrecognized || mod.latestVersion.isUnrecognized;
if (anyUnrecognized) return '8.75em';
return '7.25em';
return '8.25em';
});
</script>

0 comments on commit 9021d38

Please sign in to comment.