chore: use a class to set the logo size (#1004)

Co-authored-by: kolaente <k@knt.li>
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1004
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Co-authored-by: konrad <k@knt.li>
Co-committed-by: konrad <k@knt.li>
This commit is contained in:
konrad 2021-11-15 14:26:46 +00:00 committed by dpschen
parent e31d388ec1
commit bb64452382

View file

@ -37,11 +37,11 @@
class="migration-in-progress-container" class="migration-in-progress-container"
> >
<div class="migration-in-progress"> <div class="migration-in-progress">
<img :alt="migrator.name" :src="migrator.icon"/> <img :alt="migrator.name" :src="migrator.icon" class="logo"/>
<div class="progress-dots"> <div class="progress-dots">
<span v-for="i in progressDotsCount" :key="i" /> <span v-for="i in progressDotsCount" :key="i" />
</div> </div>
<Logo/> <Logo class="logo"/>
</div> </div>
<p>{{ $t('migrate.inProgress') }}</p> <p>{{ $t('migrate.inProgress') }}</p>
</div> </div>
@ -185,12 +185,12 @@ export default {
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
margin-bottom: 2rem; margin-bottom: 2rem;
}
img, svg { .logo {
display: block; display: block;
max-height: 100px; max-height: 100px;
max-width: 100px; max-width: 100px;
}
} }
.progress-dots { .progress-dots {