Fix logo not showing in background

This commit is contained in:
JC Brand 2023-02-22 10:52:23 +01:00
parent e1e93c2ec9
commit c38c706079
2 changed files with 12 additions and 8 deletions

View File

@ -32,6 +32,17 @@
word-spacing: 5px;
}
}
@media screen and (max-width: $mobile-portrait-length) {
.converse-brand {
display: none;
}
}
@include media-breakpoint-down(sm) {
.converse-brand {
display: none;
}
}
}
.converse-fullscreen {
@ -115,11 +126,3 @@
}
}
}
@include media-breakpoint-down(m) {
#conversejs-bg {
.converse-brand {
display: none;
}
}
}

View File

@ -21,6 +21,7 @@ const plugins = [
{from: 'logo/conversejs-filled-192.svg', to: 'images/logo'},
{from: 'logo/conversejs-filled-512.svg', to: 'images/logo'},
{from: 'logo/conversejs-filled.svg', to: 'images/logo'},
{from: 'logo/conversejs-gold-gradient.svg', to: 'images/logo'},
{from: 'src/shared/styles/webfonts', to: 'webfonts'}
]
}),