Skip to content
3 changes: 2 additions & 1 deletion apps/api/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ app.use(
helmet({
contentSecurityPolicy: {
directives: {
'img-src': ["'self'", '*.githubusercontent.com', 'data', 'dlrgbrahmseedigitalprod.blob.core.windows.net'],
'img-src': ["'self'", '*.githubusercontent.com', 'data:', 'dlrgbrahmseedigitalprod.blob.core.windows.net'],
'connect-src': ["'self'", 'dlrgbrahmseedigitalprod.blob.core.windows.net'],
},
},
})
Expand Down
8 changes: 5 additions & 3 deletions apps/frontend/src/components/CustomFields/CustomField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,12 @@ const model = computed({
class="input-style w-full text-left flex justify-between items-center"
>
<slot>
<div class="flex space-x-2 items-center">
<span>{{ model ?? 'Bitte auswählen…' }}</span>
<div class="flex space-x-2 items-center justify-between">
<div class="flex space-x-2 items-center">
<span>{{ model ?? 'Bitte auswählen…' }}</span>
</div>
<ChevronDownIcon class="h-5 text-gray-500" />
</div>
<ChevronDownIcon class="h-5 text-gray-500" />
</slot>
</button>
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ const deleteMiscellaneousItem = (item, index) => {
Bild hochladen…
</div>

<div
<!-- <div
v-for="(image, index) in heroImages"
:key="index"
class="hidden h-40 w-40 aspect-square relative group cursor-pointer rounded-lg"
Expand All @@ -283,9 +283,9 @@ const deleteMiscellaneousItem = (item, index) => {
alt="Placeholder"
class="rounded-lg aspect-square object-cover"
/>
</div>
</div> -->

<div class="hidden w-40 aspect-square relative group cursor-pointer rounded-lg">
<!-- <div class="hidden w-40 aspect-square relative group cursor-pointer rounded-lg">
<div class="hidden group-hover:block absolute inset-0 bg-black opacity-50 rounded-lg transition"></div>
<div
class="hidden group-hover:flex absolute inset-0 justify-center items-center text-white text-sm/6 font-semibold transition"
Expand All @@ -304,7 +304,7 @@ const deleteMiscellaneousItem = (item, index) => {
alt="Placeholder"
class="rounded-lg aspect-square object-cover"
/>
</div>
</div> -->
<!-- // Upload Image Wrapper-->
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const stats = computed(() => {
<div class="bg-white py-24 sm:py-32">
<div class="mx-auto max-w-7xl px-6 lg:px-8">
<div
class="mx-auto grid max-w-2xl grid-cols-1 items-start gap-x-8 gap-y-16 sm:gap-y-24 lg:mx-0 lg:max-w-none lg:grid-cols-2"
class="mx-auto grid max-w-2xl grid-cols-1 items-start gap-x-8 gap-y-16 sm:gap-y-24 lg:mx-0 lg:max-w-none lg:grid-cols-2 relative"
>
<div>
<div class="text-base/7 text-gray-700 lg:max-w-lg">
Expand Down
4 changes: 2 additions & 2 deletions apps/frontend/src/views/Anmeldung/components/PublicHero.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const unterveranstaltung = injectUnterveranstaltung()
/>
</div>
</div>
<div class="overflow-hidden">

<div class="mx-auto max-w-7xl px-6 pb-32 pt-36 sm:pt-60 lg:px-8 lg:pt-32">
<div class="mx-auto max-w-2xl gap-x-14 lg:mx-0 lg:flex lg:max-w-none lg:items-center">
<div class="relative w-full lg:max-w-xl lg:shrink-0 xl:max-w-2xl">
Expand Down Expand Up @@ -142,5 +142,5 @@ const unterveranstaltung = injectUnterveranstaltung()
</div>
</div>
</div>
</div>

</template>
Loading