Added bun burger review

This commit is contained in:
Alexis
2026-02-21 18:13:43 +01:00
parent 5fe07edfc2
commit d673842ce8
2 changed files with 14 additions and 2 deletions

View File

@@ -9,8 +9,8 @@ const props = defineProps<{
marker: ReviewMarker
}>()
const normalIconSize: PointTuple = [38, 38]
const tinyIconSize: PointTuple = [28, 28]
const normalIconSize: PointTuple = [30, 30]
const tinyIconSize: PointTuple = [25, 25]
const iconSize = ref<PointTuple>(props.marker.closed ? tinyIconSize : normalIconSize)
const iconAnchor = computed<PointTuple>(() => [iconSize.value[0] / 2, iconSize.value[1]])