Skip to content

Commit

Permalink
made sure that some icons are more appropriately sized
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Jun 30, 2024
1 parent 588bcf2 commit df84491
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webclient/components/DetailsFeedbackButton.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { FlagIcon } from "@heroicons/vue/24/outline";
import { FlagIcon } from "@heroicons/vue/16/solid";
import { useFeedback } from "~/composables/feedback";
const route = useRoute();
Expand Down
3 changes: 2 additions & 1 deletion webclient/components/ShareButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
import type { UseShareOptions } from "@vueuse/core";
import { useClipboard, useShare } from "@vueuse/core";
import type { components } from "~/api_types";
import { ClipboardDocumentCheckIcon, ClipboardIcon, ShareIcon } from "@heroicons/vue/24/outline";
import { ShareIcon } from "@heroicons/vue/16/solid";
import { ClipboardDocumentCheckIcon, ClipboardIcon } from "@heroicons/vue/20/solid";
const props = defineProps<{
readonly coords: components["schemas"]["Coordinate"];
Expand Down
3 changes: 2 additions & 1 deletion webclient/pages/[view]/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
import { useClipboard } from "@vueuse/core";
import type { components } from "~/api_types";
import { Tab, TabGroup, TabList, TabPanel, TabPanels } from "@headlessui/vue";
import { CalendarDaysIcon, ClipboardDocumentCheckIcon, LinkIcon } from "@heroicons/vue/24/outline";
import { CalendarDaysIcon } from "@heroicons/vue/16/solid";
import { ClipboardDocumentCheckIcon, LinkIcon } from "@heroicons/vue/20/solid";
import type { DetailsFeedbackButton, DetailsInteractiveMap, DetailsRoomfinderMap } from "#components";
definePageMeta({
Expand Down

0 comments on commit df84491

Please sign in to comment.