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

Co-authored-by: kolaente <k@knt.li>
Reviewed-on: vikunja/frontend#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
1 changed files with 7 additions and 7 deletions

View File

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