Skip to content

Commit c380c2b

Browse files
fix: replace the catalog background pattern (#308)
1 parent 5670227 commit c380c2b

File tree

4 files changed

+59
-3
lines changed

4 files changed

+59
-3
lines changed

assets/static/cross.svg

Lines changed: 55 additions & 0 deletions
Loading

assets/static/pacman.png

-3.24 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const props = defineProps<Props>();
4848
bottom: 0;
4949
background-size: 30px;
5050
background-repeat: repeat;
51-
background-image: url("@/assets/static/pacman.png");
51+
background-image: url("@/assets/static/cross.svg");
5252
opacity: 0.1;
5353
}
5454
</style>

pages/catalog/index.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
<script setup lang="ts">
2121
import { Availability } from "~/type/Availability";
22+
import CatalogBackground from "~/pages/catalog/CatalogBackground.vue";
2223
2324
definePageMeta({
2425
layout: "public",
@@ -43,11 +44,11 @@ const getIcon = (service: string) => {
4344
</script>
4445

4546
<template>
46-
<PackManBackground class="flex items-center justify-center">
47+
<CatalogBackground class="flex items-center justify-center">
4748
<h1 class="text-center text-5xl font-bold">
4849
{{ $t("catalog.availabilityCatalog") }}
4950
</h1>
50-
</PackManBackground>
51+
</CatalogBackground>
5152
<div
5253
class="container py-8 m-auto grid md:grid-cols-2 lg:grid-cols-3 grid-cols gap-4"
5354
>

0 commit comments

Comments
 (0)