Merge pull request #3576 from gradido/ui_add_login_page_imgs

feat(frontend): new startpage images
This commit is contained in:
einhornimmond 2025-11-19 21:22:24 +01:00 committed by GitHub
commit e2d296f6d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 4 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 673 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 KiB

View File

@ -5,11 +5,11 @@
<div class="caption-first-text">{{ $t('auth.left.gratitude') }}</div>
<div class="caption-second-text">{{ $t('auth.left.oneGratitude') }}</div>
</BCarouselSlide>
<BCarouselSlide img-src="/img/template/Foto_02_2400_small.jpg">
<BCarouselSlide img-src="/img/template/Foto_05_2400_small.jpg">
<div class="caption-first-text">{{ $t('auth.left.dignity') }}</div>
<div class="caption-second-text">{{ $t('auth.left.oneDignity') }}</div>
</BCarouselSlide>
<BCarouselSlide img-src="/img/template/Foto_03_2400_small.jpg">
<BCarouselSlide img-src="/img/template/Foto_04_2400_small.jpg">
<div class="caption-first-text">{{ $t('auth.left.donation') }}</div>
<div class="caption-second-text">{{ $t('auth.left.oneDonation') }}</div>
</BCarouselSlide>

View File

@ -4,7 +4,7 @@
<auth-navbar class="index10" />
<div class="left-content-box position-fixed d-none d-lg-block">
<div class="bg-img-box position-absolute w-100">
<div v-if="isDesktop" class="bg-img-box position-absolute w-100">
<auth-carousel class="carousel" />
</div>
<div class="bg-txt-box position-relative d-none d-lg-block text-center align-self-center">
@ -134,6 +134,7 @@ onBeforeMount(() => {
// clear state
store.commit('project', null)
})
const isDesktop = computed(() => window.innerWidth > 768)
// put project value into store, if projectBrandingBanner query don't throw an error, so project exists
watchEffect(() => {