fix #1046 logo overflow on login #1050

Merged
konrad merged 1 commits from dpschen/frontend:feature/fix-logo-overflow into main 2021-11-22 19:01:27 +00:00

View File

@ -1,7 +1,7 @@
<template>
<div class="no-auth-wrapper">
<div class="noauth-container">
<Logo width="400" height="117" />
<Logo class="logo" width="400" height="117" />
<div class="message is-info" v-if="motd !== ''">
<div class="message-header">
<p>{{ $t('misc.info') }}</p>
@ -36,4 +36,8 @@ const motd = computed(() => store.state.config.motd)
margin: 0 auto;
padding: 1rem;
}
.logo {
max-width: 100%;
}
</style>